今天 Android Market 有什么问题吗?

发布于 2024-12-05 14:47:14 字数 277 浏览 0 评论 0原文

我在 Android 市场上有一个应用程序,并且我为用户提供了一个链接来评价我的应用程序,该链接将使用 市场发布 链接已提供。

一段时间以来,这种方法运行得很好。突然,今天我无法像那样访问市场页面。我确定我没有更改代码,并且它确实符合上面给出的链接。

需要帮助。

I have an application on the Android market and I have provided a link for the users to rate my app which will direct them to my market application page directly using market-publishing link provided.

This was working perfectly well for some time now. Suddenly, today I'm not able to access the market page like that. I'm sure I haven't changed the code, and it does conform to the link given above.

Need help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

找回味觉 2024-12-12 14:47:14

您是否使用类似以下内容:

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("market://details?id=com.android.example"));
startActivity(intent);

或打开浏览器访问 URL http://market.android.com/blahblahblahwhatever

我刚刚测试了第一种情况,它有效。也许您的 Market 应用程序的默认设置发生了变化?尝试进入“设置”>“应用领域>>管理应用程序> (找到你的市场,它很可能是一个系统应用程序)>清除默认值/清除数据(取决于市场版本)

Are you using something like:

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("market://details?id=com.android.example"));
startActivity(intent);

or opening a browser to a URL http://market.android.com/blahblahblahwhatever

I just tested the first case, and it works. Perhaps something has changed with your Market app's defaults? Try going into Settings > Applications > Manage Applications > (find your market, it is a system app most likely) > Clear defaults / Clear Data (depends on market version)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文