如何使用 1.5 api 在 Android 手机上设置启动器应用程序图标
我正在使用带有 1.5 api 的 Motorola DEXT,并且未显示应用程序启动器图标。当我使用带有 1.6 或更高版本 api 的模拟器时,它工作得很好。是否有任何额外的步骤来为较旧的 api(例如我正在开发的 1.5)配置图标?
非常感谢
I Im working with a Motorola DEXT with a 1.5 api, and the application launcher icon it's not shown. When I use an emulator with a 1.6 or newer api it works just fine. Is there any additional steps to configure the icon for older apis like the 1.5 I'm working on?
Thank you very much
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
抱歉回复晚了。您需要在希望启动器启动的
activity
中使用如下所示的intent-filter
:Sorry for the late reply. You need the
intent-filter
shown below in theactivity
you want the launcher to launch:检查您的drawable/icon位于哪个资源目录。Android
1.5不支持多个屏幕dpi分辨率。 Android 1.5 只在资源目录 res/drawable 中查找应用程序图标。
如果您在 1.6 中看到该图标,但在 1.5 中没有看到,我猜测您的图标位于特定于分辨率的目录中,例如 res/drawable-mdpi。尝试在 res/drawable/icon.png 中制作图标的第二个副本。
Check which resource directory your drawable/icon is in.
Android 1.5 doesn't support multiple screen dpi resolutions. Android 1.5 only looks for application icons in the resource directory res/drawable.
If you are seeing the icon in 1.6, but not 1.5, my guess is that you have the icon in a resolution-specific directory, such as res/drawable-mdpi. Try making a second copy of the icon in res/drawable/icon.png.