通过包名和类名启动应用程序报错

Intent intent =  new  Intent();
             // 通过包名和类名来启动应用程序
             intent.setComponent( new  ComponentName(packageName, activityName));
             startActivity(intent); //269行代码

报下面错误: 04-29 09:22:51.758: W/dalvikvm(4407): threadid=1: thread exiting with uncaught exception (group=0x41ef6ba8)
04-29 09:22:51.758: W/ActivityManager(459): Permission Denial: starting Intent { act=android.intent.action.MAIN cmp=com.chomp.thinkinglauncher/.photo.MainGridviewAppActivity (has extras) } from ProcessRecord{42820ff8 4407:com.chomp.camera.activity/u0a82} (pid=4407, uid=10082) not exported from uid 10081

解决办法:
应用的清单文件中,对应的Activity加一个属性 expoted = "true",重装程序问解决。

原因是在frameworks/base/services/java/com/android/server/am/ActivityStack.java

如果直接设置了android:exported = "false" 。 即不能通过intent.setClass()启动这个Activity。
显示设置就是没有为这个Activity配置任何IntentFilter,默认也是android:exported = "false"。

查“not exported from uid”,它就没export让你用,就是不想让别人用。。。

//如果使用Context的startActivity方法的话,就需要开启一个新的task
//intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);


当然还可以直接通过包名启动
//packname 为目标程序包名
Intent intent = activity.getPackageManager().getLaunchIntentForPackage(packname);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
activity.startActivity(intent);


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值