<ListPreference
android:title="Question?"
android:summary="%s"
android:entries="@array/BS"
android:entryValues="@array/BS"
android:defaultValue="0"
android:key="BS"
></ListPreference>
我得到了这个ListPreference但它有这个取消按钮,我并不是真正想要的,它占用了太多的空间。我当然可以将它设置为白色,但我宁愿让它消失。
答案 0 :(得分:3)
自己找到答案:
<ListPreference
android:title="Question?"
android:summary="%s"
android:entries="@array/BS"
android:entryValues="@array/BS"
android:defaultValue="0"
android:key="BS"
android:negativeButtonText=""
></ListPreference>
这实际上使整个盒子变小了。