我已经编写了一个在标题栏中显示图像和文本的代码。文本显示,但不显示图像。
这是 layout_my_title.xml
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/myTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:drawableLeft="@drawable/ic_launcher"
android:padding="5dp"
android:text="@string/bv_title_string"
android:textColor="@color/White"
android:textSize="20sp" />
这是styles.xml
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="customTitleBackground">
<item name="android:background">@color/titlebackgroundcolor</item>
</style>
</resources>
这是themes.xml
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="customTheme" parent="android:Theme">
<item name="android:windowTitleSize">45dp</item>
<item name="android:windowTitleBackgroundStyle">@style/customTitleBackground</item>
</style>