我使用以下方法创建自定义标题。
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);
}
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>
现在,系统标题遵循主题,标题文本颜色也遵循主题。(例如:颜色为蓝色)但我的自定义标题文本颜色不是蓝色。我无法修复我的文字颜色,因为主题可以改变。 我的自定义标题颜色如何遵循系统主题? 系统主题由索尼定义。
答案 0 :(得分:0)
您可以尝试将TextView
的样式设置为?android:attr/windowTitleStyle
以应用系统的当前主题样式。顺便说一句,根据您实际想要自定义的内容,您可能不必为标题栏创建自己的布局。而是在您应用的主题中自定义“窗口标题”相关属性。