Android link 到另一个应用程序
Android link to another application
我可以在应用程序中对 Google 中的另一个应用程序执行 link 播放吗?
规则允许吗Google玩?
你能帮帮我吗?谢谢!
试试这个:
Intent goToMarket = new Intent(Intent.ACTION_VIEW)
.setData(Uri.parse("market://details?id=com.package.name"));
startActivity(goToMarket);
希望对你有所帮助。
我可以在应用程序中对 Google 中的另一个应用程序执行 link 播放吗?
规则允许吗Google玩?
你能帮帮我吗?谢谢!
试试这个:
Intent goToMarket = new Intent(Intent.ACTION_VIEW)
.setData(Uri.parse("market://details?id=com.package.name"));
startActivity(goToMarket);
希望对你有所帮助。