让 Android 主屏幕小部件在文本视图之间交替的最佳方式是什么?
我正在尝试创建一个主屏幕 Android 小部件,并让它在我要发送给它的两个不同文本视图之间交替。这可能吗?
I'm trying to create a homescreen Android widget and have it alternate between two different textviews I would send to it. Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为什么不保持相同的文本视图而只更改显示的文本?
如果您确实必须使用 2 个文本视图,则可以使用 RemoteViews 对象中的 setViewVisibility 方法在 GONE(这意味着不向用户显示,不占用屏幕空间)和 VISIBLE(向用户显示,占用屏幕空间)之间切换。
Why not maintain the same textview and just change the text shown?
If you really must use 2 text views you can use the setViewVisibility method in the RemoteViews object to alternate between GONE (which means not shown to user, takes up no screen space) and VISIBLE (shown to user, takes up screen space).
您可以使用 ViewFlipper 在多个文本视图之间切换(如果是这样的话)你的意思是。
您可以使用按钮事件在文本视图之间切换。
希望有帮助。
You could use a ViewFlipper to switch between multiple text views if that's what you meant.
You could use a button event to switch between the text Views.
Hope it helps.