Android 产品研发-->App 跳转另一个 App 指定页面
Posted Kevin_小飞象
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android 产品研发-->App 跳转另一个 App 指定页面相关的知识,希望对你有一定的参考价值。
前言
一个 app 打开另一个 app 的指定页面方法有以下几种
- 通过包名、类名
- 通过 intent 的 action
- 通过 Url
准备
判断要打开的 app 是否安装
public static boolean isApkInstalled(Context context, String packageName)
if (TextUtils.isEmpty(packageName))
return false;
try
ApplicationInfo info = context.getPackageManager().getApplicationInfo(packageName, PackageManager.GET_UNINSTALLED_PACKAGES);
return true;
catch (NameNotFoundException e)
e.printStackTrace();
return false;
方法一:通过包名、类名
1.在 Activity
上下文之外启动 Activity
需要给 Intent
设置 FLAG_ACTIVITY_NEW_TASK
标志,不然会报异常。
2.加了该标志,如果在同一个应用中进行 Activity
跳转,不会创建新的 Task
,只有在不同的应用中跳转才会创建新的 Task
ComponentName componentName = new ComponentName("com.example.kevin", "com.example.kevin.SplashActivity");//这里是 包名 以及 页面类的全称
Intent intent = new Intent();
intent.setComponent(componentName);
intent.putExtra("type", "110");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
方法二:通过 intent 的 action
<intent-filter>
<action android:name="com.example.kevin" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
Intent intent = new Intent();
intent.setAction("com.example.kevin");
intent.putExtra("type", "110");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
方法三:通过 Url
<intent-filter>
<data
android:host="com.example.kevin"
android:path="/cyn"
android:scheme="csd" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
Intent intent = new Intent();
intent.setData(Uri.parse("csd://com.example.kevin/cyn?type=110"));
intent.putExtra("", "");//这里Intent当然也可传递参数,但是一般情况下都会放到上面的URL中进行传递
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
以上是关于Android 产品研发-->App 跳转另一个 App 指定页面的主要内容,如果未能解决你的问题,请参考以下文章
iOS 一个app跳转另一个app并实现通信(如A跳到B并打开B中指定页面)