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.
如何在我的应用程序中添加来自 Play 商店的应用程序下载链接。
前任。我知道应用程序包名称为 com.test.abc
我想在我的应用程序中提供一个链接,以便当用户单击该链接时,包名称为 com.test.abc 的应用程序应该从 Play 商店下载并安装。
您必须market://在Intent
market://
Intent
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id="+theAPPName));