顶部(状态)栏中的文本
某些应用程序(尤其是 Lookout Mobile Security)会显示描述已完成操作的文本 在顶部(状态)栏上短时间(可能仅 1 秒)然后显示 返回到常规状态栏(至少在 HTC 手机上具有不错的动画效果)。 这是怎么做到的? 我不是在谈论通知!
Some apps (notably Lookout Mobile Security) show a text describing action done
for a short time (maybe 1 sec only) on the top (status) bar and then the display
goes back to the regular status bar (with a nice animation effect at least on HTC phones).
How is this done ?
I am not talking about notifications !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这实际上是
通知
的一部分。它称为tickerText
。请参阅:
http://developer.android.com/reference/android/app/Notification.html# tickerText
并且,如果在 HoneyComb 上开发:
http://developer.android.com/reference/android/app/Notification.html#tickerView
您还可以将
tickerText
传递到Notification
的构造函数中。This is actually part of the
Notification
. It is called thetickerText
.See:
http://developer.android.com/reference/android/app/Notification.html#tickerText
And, if developing on HoneyComb:
http://developer.android.com/reference/android/app/Notification.html#tickerView
You can also pass the
tickerText
into the constructor of theNotification
.我认为函数 Activity.setTitle() 就是您要寻找的内容。
编辑:
或者,您可以生成一个仅针对一个人显示的自定义 通知第二。
I think the function Activity.setTitle() is what you're looking for.
Edit:
Or, you could produce a custom notification that only appears for one second.