可能重复:
Android:自定义标题栏
我想为我的应用程序制作自定义标题栏,以更改我的应用程序名称的颜色。我该怎么做?
在你的活动中写下这个东西。
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");