在我的应用中,我想允许用户打开Google Play商店,查看我所有的其他应用.在iOS中,我只是使用以下(示例)iTunes链接来拉出它们:
https://itunes.apple.com/us/artist/electronic-arts/id284800461?mt=8
解决方法
搜索产品,包括pub:标签,可以在标题为
Linking to your products的API页面找到.请注意,通过URL进行搜索需要不同的方法.这两个都包括在这里.开始这样的意图:
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"))); }
请注意,市场在模拟器上不起作用,因此这个代码会将其放在URL中.该方法由this answer提供.