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.
有谁知道如何从网络调用 google play 以在 android 设备上安装应用程序?我有包名称、应用名称、版本名称、谷歌帐户、设备 ID 和设备型号 :)
您可以启动这样的意图,将用户引导到给定应用程序的市场页面
//You can search for any application by swapping in the appropriate packagename //after pname: Uri uri = Uri.parse("market://search?q=pname:com.google.zxing.client.android"); startActivity(new Intent(Intent.ACTION_VIEW, uri));