Android 改变窗口标题栏的布局

一、重点
一般应用的 Title 都是建立应用时在 AndroidManifest.xml 中配置的,或是用 setTitle

设置的简单字符串,要是想加入按钮,图片等多个复杂的布局,使用以下方法: 在窗口建立时,可以把一个 xml 布局设置成该应用的 Title

二、实例

  1. 功能:把 title 设置成为一个字串和一个按钮的组合

  2. 修改 xxActivity.java 代码
    ** public ** ** void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    requestWindowFeature(Window.FEATURE_CUSTOM_TITLE); ** // 注意顺序 **
    setContentView(R.layout.main); ** // 注意顺序 **
    getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, ** // 注意顺序 **
    R.layout.title);
    } **

  3. 填加 title.xml 代码
    ** "1.0" encoding="utf-8"? >
    xmlns:android= [http://schemas.android.com/apk/res/android

](http://schemas.android.com/apk/res/android)
android:layout_width= "wrap_content"
android:layout_height="wrap_content">
"@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:text="text" />
"@+id/button"
android:layout_width="wrap_content"
android:layout_height="30px"
android:text="button" />

三、注意

  1. 注意设置顺序
    requestWindowFeature 要在 setContentView 之前
    getWindow().setFeatureInit 最好在 setContentView 之后

  2. 注意 requestWindowFeature(Window.FEATURE_CUSTOM_TITLE) 不要和其它对 TITLE

的设置 requestWindowFeature(xxxx) 一起使用

**