Android首选项如何选择彼此相邻的多个项目之一

问题描述 投票:0回答:1

Preference Example of multiple selections next to each other

我正在尝试在我的PreferenceScreen中添加一个首选项,该首选项允许用户从彼此相邻的一行中的多个条件中选择一个条件(如上图)。>>

是否有通过android进行的预构建方式,或者我必须创建自定义首选项Layout才能实现此目的。如果可以的话,这样做的最好方法是什么。

<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
app:title="Preferences">
<Preference
    android:key="title"
    android:title="title"
    android:layout="@layout/preference_title"
    />
<SwitchPreference
    android:key="dark_mode"
    android:title="DarkMode"
    android:defaultValue="false"/>

//Instead of Switch Preference for Dark Mode 

</PreferenceScreen>
    

彼此相邻的多个选择的示例示例,我正在尝试向我的PreferenceScreen中添加一个优选项,以使用户可以在接下来的一行中从多个条件中选择一个条件...

android android-preferences preference switchpreference
1个回答
0
投票

几年前也有类似的问题。 (https://stackoverflow.com/a/20538562/11211963

© www.soinside.com 2019 - 2024. All rights reserved.