旋转项目选择无线电丢失

发布于 2024-11-10 03:47:25 字数 474 浏览 4 评论 0原文

当我的项目包含英语和/或数字符号时,它会显示该项目附近的单选选项,但是当它不包含任何英语和/或数字符号(在我的示例中仅包含希伯来语)时,它不会显示附近的单选选项该项目。

对于适配器(数组适配器)的创建,我使用了布局“android.R.layout.simple_spinner_item”,

在设置 Spinner 适配器之前,我做了

    adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);

我现在找到的解决方案,将布局设置为“simple_dropdown_item_1line”;这通过不显示单选按钮解决了问题。

关于如何使单选按钮始终可见有什么想法吗?


更正 - 该解决方案不起作用。对于我的少数旋转器来说,它在白色背景上显示白色文本。

When my items contains English and/or numeric signs, it shows the radio selection near the item, but when it doesn't contains any English and/or numeric signs (contains only Hebrew in my example) it does not show the radio selection near the item.

For the adapters (array adapter) creation i used the layout "android.R.layout.simple_spinner_item"

And before setting the Spinner adapter I did

    adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);

The solution I found for now, is set the layout to "simple_dropdown_item_1line"; this solves the problem by not showing the radio button.

Any ideas on how to get the radio button visible always?


correction - the solution does not work. for few of my spinners it shows a white text on a white background.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

许你一世情深 2024-11-17 03:47:25

您好,以下代码适用于希伯来语

对于适配器,请使用 android.R.layout.simple_spinner_item

myAdapter.setDropDownViewResource(android.R.layout.select_dialog_singlechoice);

问候,
亚龙

Hi the below code works for me in hebrew

For the Adapter use android.R.layout.simple_spinner_item

and myAdapter.setDropDownViewResource(android.R.layout.select_dialog_singlechoice);

Regards,
Yaron

溺渁∝ 2024-11-17 03:47:25

关于如何使单选按钮始终可见有什么想法吗?

为下拉视图资源使用适当的布局。 android.R.layout.simple_spinner_dropdown_item 应该始终有效。如果您创建自己的布局,但它不起作用,请确定您在 android.R.layout.simple_spinner_dropdown_item 中更改了哪些内容(例如,文本颜色、背景颜色)。

Any ideas on how to get the radio button visible always?

Use an appropriate layout for the drop-down view resource. android.R.layout.simple_spinner_dropdown_item should always work. If you create your own layout, and it does not work, identify where you changed things from android.R.layout.simple_spinner_dropdown_item that would affect matters (e.g., text color, background color).

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