当前App跳转其他App指定的Activity

//1.你要跳转app的包名,你跳转的清单文件里的package名
//2.你要跳转app指定的Activity名
ComponentName comp = new ComponentName("com.example.demo","com.example.demo2.MainActivity");

还有

<activity android:name="com.example.demo.MainActivity" 
android:label="@string/app_name"   
android:exported="true"你要跳转的其他App Activity这个属性一定要加//>//</activity>

Intent it=new Intent(); 
it.setComponent(comp);
this.startActivity(it);

当一个App service里跳转其他App Activity时(我是在写悬浮框里的service遇到的)

ComponentName comp = new ComponentName("com.example.demo","com.example.demo.MainActivity");
Intent it = new Intent();
it.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);//需要加这个不然会报错
it.setComponent(comp);
startActivity(it);
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容