(转自ztp800201) Android - 自定义标题栏(在标题栏中增加按钮和文本居中)

本文介绍了一种在Android应用中实现自定义标题栏的方法,包括带有按钮的标题栏布局设计及Activity配置步骤。

 

现在很多的Android程序都在标题栏上都显示了一些按钮和标题,如下图:

下面通过实例来看一下如何实现。

1、在layout下创建一个titlebtn.xml文件,内容如下:

 1 <?xml version="1.0" encoding="utf-8"?>     
 2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"     
 3     android:orientation="horizontal"  
 4     android:layout_width="fill_parent"   
 5     android:layout_height="fill_parent">
 6     
 7     <ImageButton
 8         android:id="@+id/imageButton1"
 9         android:layout_width="wrap_content"
10         android:layout_height="wrap_content"
11         android:background="#00000000"        
12         android:layout_centerVertical="true"
13         android:layout_alignParentLeft="true"
14         android:src="@drawable/prv" />
15 
16     <TextView 
17         android:layout_width="wrap_content"
18         android:layout_height="wrap_content"
19         android:layout_centerInParent="true"
20         android:text="标题栏" />
21 
22     <ImageButton
23         android:id="@+id/imageButton1"
24         android:layout_width="wrap_content"
25         android:layout_height="wrap_content"
26         android:background="#00000000"
27         android:layout_centerInParent="true"
28         android:layout_alignParentRight="true"
29         android:src="@drawable/next" />
30           
31 </RelativeLayout>

在创建这个xml时需要注意:

a)使用RelativeLayout的布局。

b)特别是右边按钮的属性需要指定layout_centerInParent。

c)两个按键的的ID相同。


2、在Activity中的onCreate中增加下面的代码:

1         requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
2         setContentView(R.layout.main);
3         getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.titlebtn);

注意:
a)注意代码的先后顺序。

 

通过上面的两个步骤就可以实现了上面的效果了。

 

转载于:https://www.cnblogs.com/luzhiyuan/archive/2012/05/05/2485228.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值