59

是否可以在 中创建个人偏好PreferenceScreen

我想编码这样的颜色设置:

颜色偏好

我知道使用 选择颜色很容易实现ListPreference,但是使用那种“复选框”会很棒。

4

5 回答 5

92

Android 开发者页面仅显示如何制作DialogFragment. 不过,仍然可以自定义Preference项目的外观。在您的 XML 中,您必须将根元素声明为android:id="@android:id/widget_frame,然后声明TextViewandroid:titleand android:summary。然后,您可以声明要出现在布局中的其他元素。这是一个示例,显示SeekBar您可以轻松适应多复选框颜色选择器。

seekbar_preference.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/widget_frame"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <TextView
        android:id="@android:id/title"
        style="@android:style/TextAppearance.DeviceDefault.SearchResult.Title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Title" />

    <TextView
        android:id="@android:id/summary"
        style="@android:style/TextAppearance.DeviceDefault.SearchResult.Subtitle"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Summary" />

    <SeekBar
        android:id="@+id/seekbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

</LinearLayout>

然后,在派生自 的类中Preference,重写该onCreateView()方法:

SeekbarPreference.java

@Override
protected View onCreateView( ViewGroup parent )
{
  LayoutInflater li = (LayoutInflater)getContext().getSystemService( Context.LAYOUT_INFLATER_SERVICE );
  return li.inflate( R.layout.seekbar_preference, parent, false);
}

然后在preferences.xml 文件中使用首选项:

首选项.xml

<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >

    <com.example.SeekbarPreference
        android:key="pref_max_volume"
        android:title="@string/max_volume" />
    <com.example.SeekbarPreference
        android:key="pref_balance"
        android:title="@string/balance" />

</PreferenceScreen>

这给出了如下所示的首选项:

搜索栏首选项

您可以轻松地调整此方法以在一行上显示多个复选框,就像在原始问题中一样。

于 2014-07-16T13:11:05.453 回答
48

我就是这样做的,使用支持库preference-v7

偏爱

布局/preference_theme.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <Button android:id="@+id/theme_light" ... />
    <Button android:id="@+id/theme_dark"... />
    <Button android:id="@+id/theme_sepia"... />
    <Button android:id="@+id/theme_green"... />
</LinearLayout>

PreferenceTheme.java(自定义偏好类)

import android.support.v7.preference.Preference;
import android.support.v7.preference.PreferenceViewHolder;

public class PreferenceTheme extends Preference {

    public PreferenceTheme(Context context, AttributeSet attrs) {
        this(context, attrs, 0);
    }

    public PreferenceTheme(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        setWidgetLayoutResource(R.layout.preference_theme);
    }

    @Override
    public void onBindViewHolder(PreferenceViewHolder holder) {
        super.onBindViewHolder(holder);
        holder.itemView.setClickable(false); // disable parent click
        View button = holder.findViewById(R.id.theme_dark);
        button.setClickable(true); // enable custom view click
        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                // persist your value here
            }
        });
        // the rest of the click binding
    }
}

首选项.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <android.support.v7.preference.PreferenceCategory
        android:title="Reading">
        <example.com.preference.PreferenceTheme
            android:key="pref_theme"
            android:title="Theme"
            android:defaultValue="light" />
        ...
    </android.support.v7.preference.PreferenceCategory>
</android.support.v7.preference.PreferenceScreen>
于 2015-11-21T11:24:16.417 回答
8

Creating a custom preference is similar to creating a fragment or other UI components, by defining views and actions.

Android developers has a good guide on creating settings, which includes a section for creating custom preferences: http://developer.android.com/guide/topics/ui/settings.html#Custom

于 2013-04-19T16:15:40.127 回答
5

您可以为偏好创建自定义布局,并且可以android:layout在 res/xml 中的 Preference 属性中设置它,如下所示:

<Preference
    ......................
    android:layout="@layout/your_layout" />

或者您可以使用 Activity 而不是偏好

于 2013-04-19T16:31:14.393 回答
0

或者更好的选择是扩展 DialogPreference 类。您可以将颜色选择器小部件设置为对话框视图,并在扩展首选项本身内获得积极的结果。是一个类似的问题,但它对您的场景非常有用。

于 2013-11-12T14:03:52.603 回答