2011-02-10 311 views
0

我需要讓我的標題欄變爲橙色而不是標準灰色,而且我無法弄清楚如何編輯它的設置。我還需要對齊文本,使其位於標題欄的右側而不是左側。任何想法如何做到這一點?如何編輯標題欄?

回答

0

爲了讓標題欄您想要的顏色(橙色),使用下面的代碼在你的OnCreate,

this.setTitleColor(#FF6600); 

或創建自定義標題欄,並用它在整個應用程序。如果您創建自定義標題欄,U可以進行各種修改。

例如。

 <?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"> 

     <ImageView android:id="@+id/ImageView01" 
     android:layout_width="57px" 
     android:layout_height="wrap_content" 
     android:background="@drawable/icon1"> 

     </ImageView> 

    <TextView 

    android:id="@+id/myTitle" 
    android:text="This is my new title" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:textColor="@color/titletextcolor" 
    /> 
     </LinearLayout>