Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当用户尝试安装我的应用程序时如何安装 facebook messenger。
例如,当用户在 android 上下载 facebook 应用程序时,它甚至会下载 facebook messenger。我怎样才能做到这一点?
启动意图以使用您想要的应用程序的包名称打开 Play 商店应用程序,如下所示:
Intent intent = new Intent(Intent.ACTION_VIEW); intent.setData(Uri.parse("market://details?id=com.android.example")); startActivity(intent);