Android开发如何在4.0及以上系统中自定义TitleBar

本文将通过一个实例讲解怎么实现在4.0及以上系统版本中实现自定义TitleBar,这只是我自己找到的一种方法;

xml布局文件

activity_main.xml

 
 
  1.     xmlns:tools="http://schemas.android.com/tools" 
  2.     android:layout_width="match_parent" 
  3.     android:layout_height="match_parent" 
  4.     android:paddingBottom="@dimen/activity_vertical_margin" 
  5.     android:paddingLeft="@dimen/activity_horizontal_margin" 
  6.     android:paddingRight="@dimen/activity_horizontal_margin" 
  7.     android:paddingTop="@dimen/activity_vertical_margin" 
  8.     tools:context=".MainActivity" > 
  9.  
  10.     
  11.         android:layout_width="wrap_content" 
  12.         android:layout_height="wrap_content" 
  13.         android:text="@string/hello_world" /> 
  14.  

自定义的Titlebar的布局文件titlebar.xml

 
 
  1.  
  2.     android:layout_width="match_parent" 
  3.     android:layout_height="48dp" 
  4.     android:orientation="horizontal" > 
  5.     
  6.         android:layout_width="wrap_content" 
  7.         android:layout_height="wrap_content" 
  8.         android:layout_gravity="center" 
  9.         android:layout_weight="1.5" 
  10.         android:src="@drawable/ic_action_search" /> 
  11.     
  12.         android:layout_width="wrap_content" 
  13.         android:layout_height="48dp" 
  14.         android:layout_weight="1.5" 
  15.         android:paddingTop="1dp" 
  16.         android:text="@string/app_name" 
  17.         android:textSize="14sp" /> 
  18.     
  19.         android:id="@+id/searchparameter" 
  20.         android:layout_width="wrap_content" 
  21.         android:layout_height="48dp" 
  22.         android:layout_margin="1dp" 
  23.         android:layout_weight="5" 
  24.         android:text="ABCDEFGHIJ" 
  25.         android:textSize="14sp" /> 
  26.     
  27.         android:id="@+id/button" 
  28.         android:layout_width="wrap_content" 
  29.         android:layout_height="48dp" 
  30.         android:layout_margin="1dp" 
  31.         android:layout_weight="2" 
  32.         android:text="OK" 
  33.         android:textSize="14sp" /> 
  34.  

为布局文件修改style.xml

此处的style.xml在values-11或者value-14中,否侧会报错:you cannot combine custom titles with other title features

 
 
  1.  
  2.  
  3.      
  4.         #047BF0 
  5.      
  6.      
  7.         48dp 
  8.         @style/CustomizedWindowTitleBackground 
  9.          
  10.      
  11.  

在AndroidManifest.xml添加主题样式

android:theme="@style/titlebarstyle"

 
 
  1.  
  2.     package="com.example.titlebardemo" 
  3.     android:versionCode="1" 
  4.     android:versionName="1.0" > 
  5.     
  6.         android:minSdkVersion="8" 
  7.         android:targetSdkVersion="17" /> 
  8.     
  9.         android:allowBackup="true" 
  10.         android:icon="@drawable/ic_launcher" 
  11.         android:label="@string/app_name" > 
  12.         
  13.             android:name="com.example.titlebardemo.MainActivity" 
  14.             android:label="@string/app_name" 
  15.            android:theme="@style/titlebarstyle" > 
  16.              
  17.                  
  18.                  
  19.              
  20.          
  21.      
  22.  

MainActivity.java中添加实现代码

 
 
  1. protected void onCreate(Bundle savedInstanceState) { 
  2.         super.onCreate(savedInstanceState); 
  3.         requestWindowFeature(Window.FEATURE_CUSTOM_TITLE); 
  4.         setContentView(R.layout.activity_main); 
  5.         getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, 
  6.                 R.layout.titlebar); 
  7.     } 

代码中requestWindowFeature(Window.FEATURECUSTOMTITLE);和getWindow().setFeatureInt(Window.FEATURECUSTOMTITLE,
R.layout.titlebar);位置是固定的.

希望读者朋友们通过这个例子能够对怎么实现在4.0及以上系统版本中自定义TitleBar有深刻理解和掌握。

网页题目:Android开发如何在4.0及以上系统中自定义TitleBar
本文路径:http://www.shufengxianlan.com/qtweb/news47/369897.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联