我是这些代码,用于重定向应用用户,以便在Google Play中查看我发布的所有应用。问题是我很困惑写什么代替-publisher_name。这与开发者的名字有什么不同?
Uri uri = Uri.parse("market://search?q=pub:<publisher_name>");
Intent goToMarket = new Intent(Intent.ACTION_VIEW, uri);
try {
startActivity(goToMarket);
} catch (ActivityNotFoundException e) {
startActivity(new Intent(
Intent.ACTION_VIEW,
Uri.parse("http://play.google.com/store/search?q=pub:<publisher_name>")));
}
答案 0 :(得分:1)
在Android的开发者页面中进行了描述。
http://developer.android.com/distribute/googleplay/promote/linking.html#OpeningPublisher
http://developer.android.com/distribute/googleplay/promote/linking.html#android-app
引用: “ 来自Android应用:
market://search?q=pub:<publisher_name>
以下是一个例子: