Android在一个应用中启动另一个应用的Activity时失败的解决办法
2010-08-14 00:29:00 来源:WEB开发网当在一个应用中启动另一个应用的Activity时失败,并且错误信息为
android Permission Denial:
......
requires null
时,并不一定是权限的问题。
如果是缺少某个权限,那么错误信息会是 requires
这时,只要将相应的权限添加到 AndroidManifest.xml 中就可以了。
但这里提示 requires null, 所以应该不是缺少某个权限的问题。
在网上找到如下资料:
In eclair, the CropImage activity has no intent-filter associated with
it, so it is not exported. This means it cannot be launched by
components of other applications. If this is what you are trying to
do, then that would explain the failure.
大概是说,在eclair下,没有定义intent-filter的activity是没有出口的。
也就是不能被其它程序启动。
所以,相应的解决方法就是在 AndroidManifest.xml 中,
为 activity 添加 intent-filter 的定义。
通过测试发现,只要添加如下语句,activity就可以被正常调用:
< intent-filter>
< action android:name=""/>
< /intent-filter>
相应的启动代码为:
Intent intent = new Intent();
intent.setClassName(< package name>, < class name>);
startActivity(intent);
从以上可以看出,解决的本质仅仅是为 activity 添加一个可有可无的 action 属性而已。
参考:
http://cache.baidu.com/c?m=9f65cb4a8c8507ed4fece7631043973b5e16c1743ca085482281cd1f84642c101a39f4bb507849198685212043b21a00bcb06b29611420c1cd9fcc1d83e6d07f6fc93a643041c30045c41edb8d1c659673c647aff559b0e9a62f93f884d7d95154ca520e7a84f3805a51008f32b0423eb0facf08480446aded4127a8192872de621beb1beee0433850ddad8e025bc35b903652d0f475e77f05b562f858457a&p=9e57c64ad5c215b408e2937947058f&user=baidu
- ››Android 当修改一些代码时,使用什么编译命令可以最...
- ››Android 如何添加一个apk使模拟器和真机都编译进去...
- ››Android 修改Camera拍照的默认保存路径
- ››Android 如何修改默认输入法
- ››android开发中finish()和System.exit(0)的区别
- ››Android手势识别简单封装类
- ››android中查看项目数字证书的两种方法
- ››Android中获取IMEI码的办法
- ››android 相机报错 setParameters failed
- ››Android重启运用程序的代码
- ››Android为ListView的Item设置不同的布局
- ››android bitmap与base64字符串的互相转换
赞助商链接