2017-04-08 43 views
1
<ListPreference 
    android:title="Question?" 
    android:summary="%s" 
    android:entries="@array/BS" 
    android:entryValues="@array/BS" 
    android:defaultValue="0" 
    android:key="BS" 
    ></ListPreference> 

我得到这个ListPreference,但它有这个取消按钮,我不是真的想要,它占用了太多的空间。我当然可以将它设置为白色,但我宁愿让它消失。使用没有取消按钮的ListPreference

回答

1

找到了答案自己:

<ListPreference 
    android:title="Question?" 
    android:summary="%s" 
    android:entries="@array/BS" 
    android:entryValues="@array/BS" 
    android:defaultValue="0" 
    android:key="BS" 
    android:negativeButtonText="" 
    ></ListPreference> 

这实际上使得整个盒子小。