0

我使用以下方法创建自定义标题。

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
    setContentView(R.layout.main);
    getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.title);

}

标题.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<TextView
    android:id="@+id/tv"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Title"
     />
</LinearLayout>

现在,系统标题跟随主题,标题文本颜色也跟随主题。(例如:颜色为蓝色)但我自定义的标题文本颜色不是蓝色。我无法修复我的文本颜色,因为主题可以改变。我的自定义标题颜色如何遵循系统主题?系统主题由索尼定义。

4

1 回答 1

0

您可以尝试将TextView' 样式设置为?android:attr/windowTitleStyle以应用系统当前的主题样式。顺便说一句,根据您实际想要自定义的内容,您可能不必为标题栏创建自己的布局。相反,在您的应用主题中自定义与“窗口标题”相关的属性。

于 2012-04-20T21:29:13.497 回答