我对旋转器有一些奇怪的问题。 当我不使用时,我的微调器显示单选按钮,请查看:
Image 1 Radio when use spinner
有人知道如何修复它吗?当我点击微调器和下拉列表显示时,我想要单选按钮,但现在我不使用微调器。
提前致谢。
答案 0 :(得分:1)
当您为微调器设置适配器时,您可以设置它的布局,如下所示:
String[] arr = new String[]{"a","b","c"};
selectionSpinner = (Spinner) findViewById(
R.id.dr);
ArrayAdapter<String> spinnerArrayAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_spinner_item, arr);
spinnerArrayAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
selectionSpinner.setAdapter(spinnerArrayAdapter);
main.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000" >
<Spinner android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/dr" />
</RelativeLayout>
结果: