我正在尝试实现自定义应用程序标题。我做了一个自定义布局,将标题文本颜色更改为白色。
<?xml version="1.0" encoding="utf-8"?>
<TextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="0dp"
android:text="@string/title_activity_main"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="@color/textColorWhite"/>
在活动 onCreate()
requestWindowFeature(Window.FEATURE_LEFT_ICON);
setContentView(R.layout.activity_home);
setFeatureDrawableResource(Window.FEATURE_LEFT_ICON, R.drawable.my_icon);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.layout_custom_app_title);
它无法在 Android 2.2 设备上运行。但是,我在 4.0 版本上测试成功
有没有人有任何解决方法?
编辑:
<style name="customWindowTitle">
<item name="android:textColor">@color/textColorWhite</item>
</style>
<style name="LightThemeSelector" parent="android:Theme.Light">
<item name="android:windowBackground">@drawable/app_background</item>
<item name="android:textColor">@color/textColorBlack</item>
<item name="android:windowTitleStyle">@style/customWindowTitle</item>
</style>