链接到Google Play商店中的所有应用

时间:2013-10-07 20:50:28

标签: android android-intent android-listview hyperlink google-play

我正在使用以下链接显示我开发的所有应用:

市场://搜索Q =酒馆:

我的问题是,当在应用中点击该链接时,它会打开Goog​​le Play商店,但标题显示为:“pub:Developer Name”。我希望它只是显示为我的开发者名称,而不是在前面包含“pub:”。

如果有可能,有人可以通知我吗?

提前致谢。

1 个答案:

答案 0 :(得分:1)

截至日期,您需要使用关键字pub。你不能忽视它!

你可以看看这个:

try {
    startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://search?q=pub:Developer+Name+Here")));
} catch (android.content.ActivityNotFoundException anfe) {
    startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://play.google.com/store/apps/developer?id=Developer+Name+Here")));
}