如何启动另一个应用的activity

1、使用action

Intent i=new Intent();

i.setAction("..........");

startActivity(i);

前提条件:要启动的activity需要设置action及categary(使用默认),否则会报错

2、使用ComponentName

ComponentName name=new ComponentName("包名","类名");

前提条件:activity的Exported=true

欢迎补充!
上一篇:golang 中 map 转 struct


下一篇:golang之map的使用声明