0

可能重复:
Android:自定义标题栏

我想为我的应用程序制作自定义标题栏,以更改我的应用程序名称的颜色。我该怎么做?

4

1 回答 1

1

在你的活动中写下这个东西。

getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.mytitle);

而 mytitle 布局是将显示为标题菜单的 xml 文件。下面是一个小例子。

<?xml version="1.0" encoding="utf-8"?>
<TextView
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:id="@+id/myTitle"
 android:text="custom title bar"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
 android:textColor="@color/titletextcolor"
 android:gravity ="center"/>

或者如果你只想写那么

setTitle("Your TITLE");

你可以自己做。其他参考文献 参考文献 1参考文献 2

于 2012-04-20T05:40:06.700 回答