自定义Android偏好背景

时间:2013-03-15 10:35:28

标签: android background customization preferenceactivity

我目前正在尝试为偏好设置屏幕设置自定义背景。我创建了PreferenceActivity

public class SettingsActivity extends PreferenceActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    addPreferencesFromResource(R.xml.preferences);
    PreferenceManager.setDefaultValues(this, R.xml.preferences, false);
}
}

以下是我的偏好布局

<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" 
    >
    <CheckBoxPreference 
        android:key="pref_Autoplay"
        android:title="@string/pref_Autoplay"
        android:summary="@string/pref_Autoplay_summ"
        android:defaultValue="false"/>
    <ListPreference 
        android:entryValues="@array/pref_Voice_values" 
        android:entries="@array/pref_Voice_entries" 
        android:key="pref_Voice" 
        android:summary="Choose male or female reader" 
        android:title="Readers voice" 
        android:defaultValue="female"/>


</PreferenceScreen>

当我在这里阅读更改背景时,我需要用风格创建自己的主题。这是:

<style name="PrefsTheme" parent="@android:style/Theme.Black.NoTitleBar">
        <item name="android:windowBackground">@drawable/prefs_bg</item>
        <item name="android:textColor">@color/prefs_bg</item>
        <item name="android:listViewStyle">@style/listViewPrefs</item>
    </style>

    <style name="listViewPrefs" parent="@android:style/Widget.ListView">
        <item name="android:background">@color/prefs_bg</item>
        <item name="android:cacheColorHint">@color/prefs_bg</item>
        <item name="android:textColor">@color/prefs_bg</item>
    </style>

我只需要为首选项列表设置一些图像背景。我的图片是@drawable/prefs_bg。当我将windowBackground设置为图像并将background设置为某种颜色时,首选项列表背景使用颜色而不是图片。但是,当我将背景设置为@drawable/prefs_bg首选项列表背景时,我的图片和我的ListPreference项目的单选按钮对话框也会出现使用图像背景。

请帮助,如何设置首选项列表的图像背景而不影响某些首选项的单选按钮对话框的背景?

2 个答案:

答案 0 :(得分:4)

确定。我找到了如何解决我的问题。这都怪我。要设置首选项背景,只需要

<item name="android:windowBackground">@drawable/prefs_bg</item>

这个是不必要的:

<item name="android:background">@color/prefs_bg</item>
<item name="android:cacheColorHint">@color/prefs_bg</item>

答案 1 :(得分:2)

要添加动态特性,这也可以。将其添加到PreferenceActivity。我们也可以用同样的方式设置背景颜色。

@Override
protected void onPostCreate(Bundle savedInstanceState) {
    super.onPostCreate(savedInstanceState);
    setupActionBar();
    setupSimplePreferencesScreen();

    if (Build.VERSION.SDK_INT >= 16)
        this.getListView().setBackground(getResources().getDrawable(...);
}