0

是否可以从其他应用启动 Play 商店?Follwing 工作正常,但我不需要搜索关键字。只想显示首页。任何想法?

public void launchPlayStore(String package) {
    Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + package));
    try {
        startActivity(intent);
    } catch (Exception e) {
        e.printStackTrace();
    }
}
4

1 回答 1

1

而不是编写该方法,您只需简单地调用您的意图

     Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://play.google.com/store"));
于 2013-07-19T09:48:08.203 回答