android.content.ActivityNotFoundException: No Activity found to handle Intent

本文详细解析了Android应用中遇到的ActivityNotFoundException异常,指出异常原因在于URL未以http开头,并提供了修复方法。文章还展示了相关代码示例,帮助开发者避免类似错误。

今天看友盟统计的一个bug

android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat=www.storage.aliyun.com/doujiao/download/jinye.apk }
	at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1409)
	at android.app.Instrumentation.execStartActivity(Instrumentation.java:1379)
	at android.app.Activity.startActivityForResult(Activity.java:2827)
	at android.app.Activity.startActivity(Activity.java:2933)
	at com.doujiao.hotel.activity.Browsers$3.onDownloadStart(Browsers.java:100)
	at android.webkit.CallbackProxy.handleMessage(CallbackProxy.java:402)
	at android.os.Handler.dispatchMessage(Handler.java:99)
	at android.os.Looper.loop(Looper.java:130)
	at android.app.ActivityThread.main(ActivityThread.java:3688)
	at java.lang.reflect.Method.invokeNative(Native Method)
	at java.lang.reflect.Method.invoke(Method.java:507)
	at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:875)
	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:633)
	at dalvik.system.NativeStart.main(Native Method)

异常出现在下面的代码里面,主要是url格式不对
        webview.setDownloadListener(new DownloadListener() {
            public void onDownloadStart(String url, String userAgent,
                    String contentDisposition, String mimetype,
                    long contentLength) {
                Uri uri = Uri.parse(url);
                Intent intent = new Intent(Intent.ACTION_VIEW, uri);
                startActivity(intent);

            }
        });
出现错误的原因是url不是以http开头的
下面的代码是会抛上面的异常的

Uri uri = Uri.parse("www.baidu.com");

Intent intent = new Intent(Intent.ACTION_VIEW,uri);

startActivity(intent);



评论 2
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值