您的位置:首页 > 移动开发

Android App跳转App以及App跳转指定App页面的实现

2016-08-26 16:52 986 查看
当前App跳转其他App

PackageManager packageManager = getPackageManager();

Intent intent = new Intent();

intent =packageManager.getLaunchIntentForPackage("com.example.abc2");
//这里面的值是你要跳转app的包名,你跳转的清单文件里的package名
//<manifest xmlns:android="http://schemas.android.com/apk/res/android"

//    package="com.example.abc2"

//  android:versionCode="1"

//   android:versionName="1.0" >

startActivity(intent);

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

ComponentName comp = new ComponentName("com.example.abc2","com.example.abc2.MainActivity2"); 

//这里面的2个值是:

//1.你要跳转app的包名,你跳转的清单文件里的package名

//2.你要跳转app指定的Activity名

//<activity

 //android:name="com.example.abc2.MainActivity2"

 //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.windowdemo","com.example.windowdemo.MainActivity2");

Intent it = new Intent();

it.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);//需要加这个不然会报错

it.setComponent(comp);

startActivity(it);
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
相关文章推荐