gpt4 book ai didi

android - 无法启动 ImplicitTest

转载 作者:行者123 更新时间:2023-11-29 15:18:23 25 4
gpt4 key购买 nike

我正在上 coursera android 类(class)。我正在尝试运行第 3 周的实验室,关于 Intents、ImplicitTest,但是当模拟器运行时,它在尝试打开浏览器应用程序时崩溃。并且有一条消息说:“浏览器没有响应”,当我阅读 de Junit 选项卡时,在 Failure Trace 下,它说:ChooserActivity not Found。

如果有人遇到同样的问题,请告诉我如何解决。

这是我的代码:

private void startImplicitActivation() {

Log.i(TAG, "Entered startImplicitActivation()");

// TODO - Create a base intent for viewing a URL
// (HINT: second parameter uses parse() from the Uri class)
Uri pagina = Uri.parse(URL);
Intent pag = new Intent(Intent.ACTION_VIEW,pagina);


// TODO - Create a chooser intent, for choosing which Activity
// will carry out the baseIntent. Store the Intent in the
// chooserIntent variable below. HINT: using the Intent class'
// createChooser())

Intent chooserIntent = null;
chooserIntent= Intent.createChooser(pag,CHOOSER_TEXT);

Log.i(TAG,"Chooser Intent Action:" + chooserIntent.getAction());
// TODO - Start the chooser Activity, using the chooser intent
startActivity(chooserIntent);

}

这部分是MyBrowser Manifest

<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http" />
</intent-filter>

最佳答案

对于其他任何人来说,都是如此。尝试使用 API 级别 18,如果您使用的是 21/22,您将收到此错误

关于android - 无法启动 ImplicitTest,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21745708/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com