如何对Android Spinner的选定文本征选框?

发布于 2024-11-16 18:36:47 字数 336 浏览 3 评论 0原文

我添加了宽度微调器
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 技术交流群。

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

发布评论

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

评论(1

韵柒 2024-11-23 18:36:47

我猜您已经尝试添加

 android:singleLine="true"
 android:ellipsize="marquee"
 android:marqueeRepeatLimit="marquee_forever"

到 xml 文件中选定的文本视图中?

TextView 选取框

I'm guessing you have tried adding

 android:singleLine="true"
 android:ellipsize="marquee"
 android:marqueeRepeatLimit="marquee_forever"

to the selected text's view in your xml file?

TextView Marquee

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