我已按照此SO问题的说明进行操作:How to change the text on the action bar
我能够成功创建自己的标题栏,但是当我将背景颜色应用于布局时,颜色不会跨越整个标题栏。还有机器人灰色背景颜色的残余。
这是我的XML:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="400px"
android:layout_height="fill_parent"
android:orientation="horizontal" android:background="@color/solid_blue">
<ImageView android:id="@+id/logo"
android:layout_width="57px"
android:layout_height="wrap_content"
android:background="@drawable/icon">
</ImageView>
<TextView
android:id="@+id/myTitle"
android:text="StockDroid by"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:textColor="#FFFFFF"
/>
</LinearLayout>
答案 0 :(得分:2)
编辑:
您错过了为Window Title设置自定义样式并通过活动的android:theme
属性在Manifest中设置的内容。
您必须在res / values / styles.xml文件中创建这两种样式:
<style name="MyTheme" parent="android:Theme">
<item name="android:windowTitleSize">50px</item>
<item name="android:windowTitleBackgroundStyle">@style/WindowTitleBackground
</item>
</style>
<style name="WindowTitleBackground" parent="android:WindowTitleBackground">
<item name="android:background">@android:color/transparent
</item>
</style>
然后你必须在你的Manifest中将你的风格设置为主题,如:
<activity android:name=".activity"
android:label="@string/appname" android:theme="@style/MyTheme" />
希望它有所帮助。