如何为不同的 Android 活动分配视觉上不同的启动图标

发布于 2024-12-22 12:42:00 字数 321 浏览 2 评论 0 原文

成功遵循设置多个 LAUNCHER 活动的方法后(如 https://stackoverflow.com/a/3270783/978329)使用taskAffinity属性,我最终得到了单独的图标,每个活动一个。

我的问题是,基于父应用程序图标,所有这些图标看起来都一样。

我正在寻找一种为每个 LAUNCHER 活动分配不同视觉图标的方法 (例如,一个红色图标,一个绿色图标,一个蓝色图标等),因此区别不仅在于标签,还在于图形。

有什么想法吗?

After following successfully the method to set multiple LAUNCHER activities (as described in https://stackoverflow.com/a/3270783/978329) using the taskAffinity attribute, I ended up with having separated icons, one for each Activity.

My problem is that all these icons look the same, based on the parent application icon.

I am looking for a way to assign a different visual icon for each LAUNCHER activity
(e.g. one red icon, one green icon, one blue icon etc.) so the difference will not be only by the label, but also by the graphics.

Any idea?

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

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

发布评论

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

评论(2

骷髅 2024-12-29 12:42:00

在清单的每个 activity 元素中添加 android:icon 属性并将其分配给可绘制对象。例如

In each activity element of your manifest add the android:icon attribute and assign it to a drawable. For example <activity ... android:icon="@drawable/icon_x".

ˉ厌 2024-12-29 12:42:00

您可以

android:icon="@drawable/my_activity_icon"

在定义为启动器的每个活动中使用:

You can use:

android:icon="@drawable/my_activity_icon"

in each activity defined as launcher.

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