Android 让用户在google play store中查看我发布的所有应用程序

Android 让用户在google play store中查看我发布的所有应用程序,android,Android,我使用这些代码重定向应用程序用户,以便在google play中查看我发布的所有应用程序。问题是我不知道该写什么来代替出版商的名字。这和开发者的名字有什么不同 Uri uri = Uri.parse("market://search?q=pub:<publisher_name>"); Intent goToMarket = new Intent(Intent.ACTION_VIEW, uri); try { startActiv

我使用这些代码重定向应用程序用户,以便在google play中查看我发布的所有应用程序。问题是我不知道该写什么来代替出版商的名字。这和开发者的名字有什么不同

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>")));
        }
Uri=Uri.parse(“market://search?q=pub:");
Intent goToMarket=新的Intent(Intent.ACTION_视图,uri);
试一试{
startActivity(goToMarket);
}捕获(ActivityNotFounde异常){
星际触觉(新意图)(
意图、行动和观点,
解析http://play.google.com/store/search?q=pub:")));
}

Android的开发者页面对其进行了描述

引述: " 从Android应用程序:

market://search?q=pub:<publisher_name>
market://search?q=pub:
下面是一个例子:


Publisher==开发者帐户意味着我必须在这里提到什么?仍然不清楚。我必须写我的电子邮件?不是你的电子邮件,请查看我的答案,如果你想了解详细信息,请使用提供的链接,当然,尝试一下!如果你还没有任何应用程序,你可以输入另一个开发者名称来尝试一下,看看它是否有效。。。