开发一个Android预加载类型的应用程序,打开市场详细信息页面
我正在开发一个预加载型应用程序...桌面图标需要将您直接带到市场详细信息页面,您可以在其中下载完整的应用程序。我似乎不知道如何绕过任何类型的实际应用程序屏幕直接进入市场。应用程序屏幕加载一瞬间,显示清单中 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
步骤#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 callingstartActivity()
to bring up the Market activity.试试这个:
try this: