2

我已按照此 SO 问题的说明进行操作:如何更改操作栏上的文本

我能够成功创建自己的标题栏,但是当我将背景颜色应用于布局时,颜色不会跨越整个标题栏。android 灰色背景颜色仍然存在。

这是我的 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>
4

1 回答 1

2

剩下的东西就在那个链接本身作为评论人。

编辑:

您错过了为 Window Title 设置自定义样式并通过android:themeActivity 属性将其设置在 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>

那么你必须在你的清单中将你的风格设置为主题,就像:

<activity android:name=".activity"
            android:label="@string/appname" android:theme="@style/MyTheme" />

希望能帮助到你。

于 2010-09-23T07:34:02.290 回答