java 通过PlayMarket中的搜索启动另一个应用程序https://stackoverflow.com/questions/3872063/launch-an-application-from

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 通过PlayMarket中的搜索启动另一个应用程序https://stackoverflow.com/questions/3872063/launch-an-application-from相关的知识,希望对你有一定的参考价值。

public void startNewActivity(Context context, String packageName) {
    Intent intent = context.getPackageManager().getLaunchIntentForPackage(packageName);
    if (intent == null) {
        // Bring user to the market or let them choose an app?
        intent = new Intent(Intent.ACTION_VIEW);
        intent.setData(Uri.parse("market://details?id=" + packageName));
    }
    intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    context.startActivity(intent);
}

以上是关于java 通过PlayMarket中的搜索启动另一个应用程序https://stackoverflow.com/questions/3872063/launch-an-application-from的主要内容,如果未能解决你的问题,请参考以下文章

OBIEE 12c 中的错误通过代理调用 java 方法以将报告发送到另一台服务器

Pyspark 通过使用另一列中的值替换 Spark 数据框列中的字符串

PostgreSQL 中的高效全文搜索,在另一列上排序

Ubuntu 设置程序双击启动和sh脚本开机自启动的另一种方法

LeetCode Java刷题笔记— 450. 删除二叉搜索树中的节点

postgres:通过 varchar 搜索,这是 java 中的枚举