设置状态栏图标名称

发布于 2024-10-17 03:18:04 字数 237 浏览 5 评论 0原文

我即将发布我的第一个应用程序。我创建了所有必要的图标,在我的例子中是启动器图标和状态图标(我仅为我的应用程序的下一个版本更新创建了这些图标)。

但我想知道状态图标名称在哪里设置。我的意思是,启动器图标名称是这样在清单文件中设置的:

android:icon="@drawable/ic_launcher"

那么是否有类似的地方可以设置状态图标名称?

提前致谢!

I'm about to publish my first application. I created all the necessary icons, in my case the launcher icons and the status icons (which I only created for my app next versions updates).

But I am wondering where the status icons names are set. I mean, the launcher icon name is set in the Manifest file this way :

android:icon="@drawable/ic_launcher"

so is there a similar place to set the status icon name?

Thanks in advance!

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

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

发布评论

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

评论(1

请帮我爱他 2024-10-24 03:18:04

我很确定您在发出通知时明确设置了图标。所以:

int icon = R.drawable.notification_icon;
CharSequence tickerText = "Your Text";
long when = System.currentTimeMillis();

Notification notification = new Notification(icon, tickerText, when);

这是直接取自 http://developer.android.com/指南/topics/ui/notifiers/notifications.html

I'm pretty sure you explicitly set the icon when you make a notification. So:

int icon = R.drawable.notification_icon;
CharSequence tickerText = "Your Text";
long when = System.currentTimeMillis();

Notification notification = new Notification(icon, tickerText, when);

This was taken directly from http://developer.android.com/guide/topics/ui/notifiers/notifications.html

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