旋转项目选择无线电丢失
当我的项目包含英语和/或数字符号时,它会显示该项目附近的单选选项,但是当它不包含任何英语和/或数字符号(在我的示例中仅包含希伯来语)时,它不会显示附近的单选选项该项目。
对于适配器(数组适配器)的创建,我使用了布局“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您好,以下代码适用于希伯来语
对于适配器,请使用
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
为下拉视图资源使用适当的布局。
android.R.layout.simple_spinner_dropdown_item
应该始终有效。如果您创建自己的布局,但它不起作用,请确定您在android.R.layout.simple_spinner_dropdown_item
中更改了哪些内容(例如,文本颜色、背景颜色)。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 fromandroid.R.layout.simple_spinner_dropdown_item
that would affect matters (e.g., text color, background color).