1

有时,当我尝试在应用程序中打开浏览器进行添加时,我的应用程序会崩溃,这是我的代码:

public void onBannerClick(final View view){  
Intent intent = new Intent(Intent.ACTION_VIEW);  
intent.setData(Uri.parse(mBannerURL));  
startActivity(intent);  

这是我得到的堆栈跟踪:

java.lang.IllegalStateException: Could not execute method of the activity
at android.view.View$1.onClick(View.java:2179)
at android.view.View.performClick(View.java:2535)
at android.view.View$PerformClick.run(View.java:9130)
at android.os.Handler.handleCallback(Handler.java:618)
at android.os.Handler.dispatchMessage(Handler.java:123)
at android.os.Looper.loop(SourceFile:351)
at android.app.ActivityThread.main(ActivityThread.java:3850)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:538)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:901)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:659)
at dalvik.system.NativeStart.main(Native Method)
Caused by: java.lang.reflect.InvocationTargetException
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:538)
at android.view.View$1.onClick(View.java:2174)
... 11 more
Caused by: android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat=http://xxxxxxxxx.xx }
at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1449)
at android.app.Instrumentation.execStartActivity(Instrumentation.java:1419)
at android.app.Activity.startActivityForResult(Activity.java:2878)
at android.app.Activity.startActivity(Activity.java:2984)
at com.XXXXXXXXX.XXXXXXXXXXXXX.MainActivity.onBannerClick(MainActivity.java:830)
... 14 more

任何人都可以帮忙吗?

4

3 回答 3

1

检查您的方案是否拼写正确。我发现简单地使用“HTTP:”而不是“http:”导致了这个问题。本页底部的注意事项:

http://developer.android.com/guide/topics/manifest/data-element.html

... Android 中的方案匹配区分大小写。

于 2013-10-13T22:39:24.030 回答
0

大概是您收到某种 HTTP 错误(例如,无效的 URL 和404响应),或者 HTTP 响应是在您的设备缺少应用程序的 MIME 类型下提供的。

于 2012-07-07T19:23:56.997 回答
0

经过大量尝试后,我遇到了同样的问题,我发现问题出在我的 URL 上。我将 URL 更改为 https,后来它的工作

于 2016-10-07T08:34:05.320 回答