我使用以下方法创建自定义标题。
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>
现在,系统标题跟随主题,标题文本颜色也跟随主题。(例如:颜色为蓝色)但我自定义的标题文本颜色不是蓝色。我无法修复我的文本颜色,因为主题可以改变。我的自定义标题颜色如何遵循系统主题?系统主题由索尼定义。