如何为我的Android应用程序制作自定义标题栏?

时间:2012-04-20 05:26:40

标签: android

  

可能重复:
  Android: Custom Title Bar

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

1 个答案:

答案 0 :(得分: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");

你可以自己动手。其他参考文献Reference 1Reference 2