android 批改preference中view属性(title,summary字体颜色等)

android 修改preference中view属性(title,summary字体颜色等)有些时候,我们并不需要系统给我们的这么单调

android 修改preference中view属性(title,summary字体颜色等)
有些时候,我们并不需要系统给我们的这么单调的ui,我们通常会修改一些属性,比如 view的背景,字体的属性等,那么这个时候有两种选择: 

  1.针对单个应用程序,定义一个cutom的layout,当然这个 layout跟系统的layout元素要一致(否则你怎么改呢?),然后在preference.xml(文件名你自己随便取)android:layout添加你定一个 的layout就可以了。

  2.针对整个android系统,修改preference 相关的属性,那么所有的用到PreferenceActivity的界面都会相应的改变。这里只需要修改相应的系统layout文件(在 framework/base/core/res/res/layout),比如preference_category.xml等。

   1.先说说地一种吧,比较常用到的。

  首先,定义你的layout文件,这个layoutn你直接到framework拷下来,这里标记为custom_preference.xml

 

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     android:layout_width="match_parent" android:layout_height="wrap_content"
     android:minHeight="?android:attr/listPreferredItemHeight"
     android:gravity="center_vertical" android:paddingRight="?android:attr/scrollbarSize">
 
     <RelativeLayout android:layout_width="wrap_content"
         android:layout_height="wrap_content" android:layout_marginLeft="15dip"
         android:layout_marginRight="6dip" android:layout_marginTop="6dip"
         android:layout_marginBottom="6dip" android:layout_weight="1">
 
         <TextView android:id="@+android:id/title"
             android:layout_width="wrap_content" android:layout_height="wrap_content"
             android:singleLine="true" android:textAppearance="?android:attr/textAppearanceLarge"
             android:ellipsize="marquee" android:fadingEdge="horizontal"
             android:textColor="#475ad7"/>
 
         <TextView android:id="@+android:id/summary"
             android:layout_width="wrap_content" android:layout_height="wrap_content"
             android:layout_below="@android:id/title" android:layout_alignLeft="@android:id/title"
             android:textAppearance="?android:attr/textAppearanceSmall"
             android:textColor="#5ad747"/>
 
     </RelativeLayout>
 
     <!-- Preference should place its actual preference widget here. -->
     <LinearLayout android:id="@+android:id/widget_frame"
         android:layout_width="wrap_content" android:layout_height="match_parent"
         android:gravity="center_vertical" android:orientation="vertical"/>
 
 </LinearLayout>

 

然后,你在些preference.xml文件的时候,应用到这个layout文件。

 

<?xml version="1.0" encoding="utf-8"?>
 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
     <CheckBoxPreference    android:key="checkbox_key"
         android:title="checkbox_title"


         android:summary="checkbox_summery"
         android:defaultValue="true"
         android:layout="@layout/custom_preference_layout"></CheckBoxPreference>
 </PreferenceScreen>

ok, 到这里,你就像平时一样使用这个preference.xml文件就好了,你会发现字体的颜色成功改变了


2.第二种情况,需要搭建android系统的编译环境,这个环境怎么搭建这里就不说了。


直接到系统layout文件(在framework/base/core/res/res/layout),修改 preference.xml,这里只是针对上面那个例子,你当然也可以修改其他的preference相应的文件。preference.xml文件的内容就是第一种情况的custom_preference.xml文件的内容,这里就不重复了。

修改后重新mka下系统,重启模拟器,ok,就可以看到第一种方法一样的效果了。
[解决办法]
先谢谢分享。
我有个疑问,最近在做一个listpreference 我需要改变 里面的那个 alertdialog 的title 背景色 除了 自己重新写一个控件 有什么其他的办法么?
http://bbs.csdn.net/topics/390370668?page=1#post-393739967 如这里描述