如何在布局视图android中删除微调器中的单选按钮

时间:2014-08-25 10:53:54

标签: android android-layout

我对旋转器有一些奇怪的问题。 当我不使用时,我的微调器显示单选按钮,请查看:

Image 1 Radio when not use

Image 1 Radio when use spinner

有人知道如何修复它吗?当我点击微调器和下拉列表显示时,我想要单选按钮,但现在我不使用微调器。

提前致谢。

1 个答案:

答案 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>  

结果:

enter image description here

enter image description here