开发一个Android预加载类型的应用程序,打开市场详细信息页面

发布于 2025-01-07 02:12:21 字数 142 浏览 1 评论 0原文

我正在开发一个预加载型应用程序...桌面图标需要将您直接带到市场详细信息页面,您可以在其中下载完整的应用程序。我似乎不知道如何绕过任何类型的实际应用程序屏幕直接进入市场。应用程序屏幕加载一瞬间,显示清单中 android:label 标签的值...然后市场详细信息加载。

I'm developing a pre-load-type application... the desktop icon needs to take you directly to the market details page where you can download the full app. i can't seem to figure out how to go straight to the market, bypassing any kind of actual application screen.. the application screen loads for a split second, displaying the value from the android:label tag from the manifest... then the market details loads.

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

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

发布评论

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

评论(2

心舞飞扬 2025-01-14 02:12:21

步骤#1:将 android:theme="@android:style/Theme.NoDisplay" 添加到启动器 Activity 的 元素。

步骤 #2:在调用 startActivity() 后立即调用 finish() 以启动 Market 活动。

Step #1: Add android:theme="@android:style/Theme.NoDisplay" to the <activity> element for your launcher activity.

Step #2: Call finish() just after calling startActivity() to bring up the Market activity.

那请放手 2025-01-14 02:12:21

试试这个:

Uri marketUri = Uri.parse("market://details?id=" + packageName);
Intent marketIntent = new Intent(Intent.ACTION_VIEW, marketUri);
startActivity(marketIntent);

try this:

Uri marketUri = Uri.parse("market://details?id=" + packageName);
Intent marketIntent = new Intent(Intent.ACTION_VIEW, marketUri);
startActivity(marketIntent);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文