I'm trying from this xml and want to add radio button but not getting solution . Here i am not getting proper solution .so suggest me . Here also attach image which type UI iwant from using Preference screen.
<Preference
android:key="@string/pref_key_passcode_toggle"
android:persistent="false"
android:widgetLayout="@layout/check_custom"
android:title="@string/passcode_turn_on" />
<Preference
android:minHeight="10dp"
android:key="@string/pref_key_change_passcode"
android:persistent="false"
android:title="@string/passcode_change_passcode"
/>
<Preference
android:height="40dp"
android:key="@string/pref_key_change_password"
android:persistent="false"
android:title="@string/password_change"
/>
</PreferenceCategory>
答案 0 :(得分:0)
可以找到所有现有首选项here。如果您在任何时候都不太挑剔地显示所有选项,则可以使用ListPreference。它仅显示布局中当前选定的选项。当用户选择它时,将显示一个对话框,显示所有可供选择的选项列表。
如果您真的希望它看起来像上面的图像,您将需要扩展Preference并实现您自己的MultiSelectPreference。您可以指定自己的布局并使用标准窗口小部件来精确设计它的外观。