如何对Android Spinner的选定文本征选框?
我添加了宽度微调器:width=this.getWindowManager().getDefaultDisplay().getWidth()/2;
在我的项目的布局之一中。 spinner
具有不同宽度的字符串,甚至可以包裹两行。现在,由于 spinner 宽度
是确定的(屏幕宽度的一半),当我从 spinner
中选择一个字符串时,所选文本会与 spinner UI 重叠
。
如何对所选文本应用选取框效果?
I have added Spinner of width:width=this.getWindowManager().getDefaultDisplay().getWidth()/2;
in one of the layout in my project. The spinner
has strings of varied widths, which even wrap up to two lines. Now Since the spinner width
is definite (half of the screen width), when I select one of the string from the spinner
, the selected text overlaps the spinner UI
.
How can I apply the marquee effect on the selected text?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜您已经尝试添加
到 xml 文件中选定的文本视图中?
TextView 选取框
I'm guessing you have tried adding
to the selected text's view in your xml file?
TextView Marquee