如何使用 1.5 api 在 Android 手机上设置启动器应用程序图标

发布于 2024-09-27 02:38:17 字数 139 浏览 5 评论 0原文

我正在使用带有 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 技术交流群。

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

发布评论

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

评论(2

独孤求败 2024-10-04 02:38:17

抱歉回复晚了。您需要在希望启动器启动的 activity 中使用如下所示的 intent-filter

    <activity
            android:name=".ActivityToBeStartedByLauncher"
            android:label="@string/app_name"
            >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

Sorry for the late reply. You need the intent-filter shown below in the activity you want the launcher to launch:

    <activity
            android:name=".ActivityToBeStartedByLauncher"
            android:label="@string/app_name"
            >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
舞袖。长 2024-10-04 02:38:17

检查您的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.

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