Android APP唤醒打开其他APP

Posted 肆万零叁佰贰拾

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android APP唤醒打开其他APP相关的知识,希望对你有一定的参考价值。

App(a):判断是否为App(b)是否存在,不存在选择下载 存在后台状态直接唤醒 否则直接打开
App(a)部分代码

if (checkPackage("com.xxx.android")) {
				if (ToolsUtils.isBackgroundRunning(this, "com.xxx.android")) {
					Intent intent = new Intent();
					intent.setPackage("com.xxx.android");
					intent.setAction("com.xxx.android.open");
					sendBroadcast(intent);
				} else {
					PackageManager packageManager = getPackageManager();
					Intent intent = new Intent();
					intent = packageManager
							.getLaunchIntentForPackage("com.xxx.android");
					startActivity(intent);
				}
			} else {
				Toast.makeText(this, "点击下载app", Toast.LENGTH_SHORT).show();
			}

  


App(b)部分代码 通过广播唤醒app
AndroidManifest.xml

<receiver android:name="com.eqiyun.android.broadcast.OpenAppReceiver" >
            <intent-filter>
                <action android:name="com.eqiyun.android.open" />
            </intent-filter>
</receiver>

  





以上是关于Android APP唤醒打开其他APP的主要内容,如果未能解决你的问题,请参考以下文章

Android外部唤醒APP跳转指定页面

Android外部唤醒APP跳转指定页面

Android外部唤醒APP跳转指定页面

Android外部唤醒APP跳转指定页面

[ios] 如何调用其他app h5界面调用打开app

js唤醒手机APP