实现自定义窗口title

第一步,实现自定义标题栏,需要在onCreate方法里这样写
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.main);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.titlebar);
注意:requestWindowFeature方法要在setContentView方法之前,getWindow().setFeatureInit最好在setContentView方法之后


第二步,就是写好自己的布局文件,实现标题栏的自定义:title.xml

android:orientation="vertical" 
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/title_bg" >
android:layout_width="wrap_content"
android:layout_height="wrap_content" 
android:textSize="30dip"
android:textColor="#000"
android:text="@string/app_label"
android:layout_gravity="center_vertical"/>



第三步,写一个style:velue/style.xml

   
     



第四步,把style加入到AndroidManifest.xml
                  android:label="@string/app_name" android:theme="@style/activityTitlebar">  
             
                 
                 
           
 
 

你可能感兴趣的:(实现自定义窗口title)