主屏幕 - 微小的信息消息
在我的 HTC Desire (Froyo) 上,我使用电源控制小部件来启用 Wi-Fi。 当我按下 Wi-Fi 按钮时,主屏幕底部会出现一条消息“打开 Wi-Fi”(位于灰色小方框内)(并在 2-3 秒后淡出)。 我查看了“设置”包(platform/packages/apps/Settings.git),但除了“首选项”视图之外,没有发现该特定字符串的任何用法。
有谁知道此消息如何显示以及此机制是否可用于第 3 方应用程序?
On my HTC Desire (Froyo) I use Power Control Widget to enable Wi-Fi.
When I press Wi-Fi button a message "Turn on Wi-Fi" (inside gray tiny box) appears at bottom of home screen (and fades out after 2-3 seconds).
I looked through Settings package (platform/packages/apps/Settings.git), but haven't found any usage of that specific string other that within Preferences view.
Does anyone have any idea what how this message is displayed and if this mechanism is available for 3rd party app?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它通过 Toast 显示: http://developer.android.com/guide /topics/ui/notifiers/toasts.html
It's displayed through a Toast: http://developer.android.com/guide/topics/ui/notifiers/toasts.html
这就是所谓的吐司。
您可以在任何活动中调用它。
您可以根据需要将 Toast.LENGTH_LONG 替换为 Toast.LENGTH_SHORT。
It's called a Toast.
You can invoke it in any activty.
You can substitute Toast.LENGTH_SHORT for Toast.LENGTH_LONG depending on what you want.