我正在开发一个应用程序,其中我添加了一个名为"更多应用程序"的按钮,我想要的是当用户点击该按钮时它应该重定向到显示我的帐户的应用程序列表的游戏商店。 我做了以下代码:
String url_more_app = "https://play.google.com/store/search?q=rajesh%20panchal&hl=en";
case R.id.btn_more_app:
Intent viewIntent =
new Intent("android.intent.action.VIEW",
Uri.parse(url_more_app ));
startActivity(viewIntent);
break;
但是当点击该按钮时,它会显示我的应用的应用列表以及其他人的应用, 我怎么才能只显示我的应用程序?
答案 0 :(得分:5)
从
更改网址String url_more_app = "https://play.google.com/store/search?q=rajesh%20panchal&hl=en";
要
https://play.google.com/store/apps/developer?id=Rajesh+Panchal
答案 1 :(得分:1)
看看这个
final String appPackageName = "com.example"; // Can also use getPackageName(), as below
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + appPackageName)));
答案 2 :(得分:1)
启动Google Play商店可以正常使用一些市场URI:
String market_uri = "https://play.google.com/store/search?q=pub:maven&hl=en";
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse(<market_uri>));
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_NO_ANIMATION);
startActivity(intent);
uris可以在哪里
喜欢mine