自己的设计偏好屏幕

时间:2012-03-24 12:54:11

标签: android android-theme preferencescreen

我正在尝试制作Preference Screen,如下图所示,在PreferenceCategory标题的清单和布局中使用了SettingActivity的样式,但我不明白,屏幕上的小部件怎么能是白色。我不知道如何将标题图像放在屏幕的顶部(文本“设置”)。   有谁可以帮我解决这个问题?

enter image description here

1 个答案:

答案 0 :(得分:0)

xml你可以删除标签标签

<application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >

//来自string.xml

 <string name="app_name">Settings</string>

并将您的活动添加为

getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.page_layout);
 requestwindowfeature(Window.CUSTOMTITLEBAR, R.layout.titlelayout);

自定义标题link: