我使用此代码将用户重定向到Market中的特定应用:
Uri marketUri = Uri.parse("market://details?id=" + packageName);
Intent marketIntent = new Intent(Intent.ACTION_VIEW, marketUri);
startActivity(marketIntent);
如何将用户重定向到市场中的开发者页面?
我尝试从浏览器复制链接到Uri
Uri marketUri = Uri.parse("market://developer?id=Developer+Name");
真实姓名已被更改 这会导致致命异常
E/AndroidRuntime(29775): android.content.ActivityNotFoundException: No Activity found to handle Intent
我可以用
Uri marketUri = Uri.parse("https://play.google.com/store/apps/developer?id=Developer+Name");
但会出现应用程序选择对话框(Play Market或Browser)。我想默认使用市场。
谢谢。
答案 0 :(得分:6)
正确的查询是:
market://search?q=pub:\"IncrediApp\"
关于你的错误:
这会导致致命异常
这是因为您可能是在模拟器或没有安装Google Play应用的设备上运行它。
但会出现应用程序选择对话框(Play Market或Browser)。我想默认使用市场。
如果您使用market://前缀,则它将是默认值。对于https://play.google.com,它根据用户的设置工作,并询问用户是否未定义默认值。