Android手机开发 使用线性布局和相对布局实现Button垂直水平居中

所属分类: 软件编程 / Android 阅读数: 842
收藏 0 赞 0 分享

居中呢,这里分两种不同布局方式的居中!分别是 LinearLayout 和RelativeLayout。

一、首先说的是LinearLayout布局下的居中:

注意:android:layout_width="fill_parent" android:layout_height="fill_parent" 属性中,若水平居中,至少在宽度上占全屏;若垂直居中,则在高度上占全屏

<LinearLayout 
  android:layout_width="fill_parent" 
  android:layout_height="fill_parent" 
  android:gravity="center|center_horizontal|center_vertical" > 
  // 上面gravity属性的参数:center为居中,center_horizontal为水平居中,center_vertical为垂直居中 
  <Button  
    android:id="@+id/Binding_button"  
    android:layout_width="wrap_content"  
    android:layout_height="wrap_content"  
    android:text="关联新账户" /> 
</LinearLayout>

二、然后说的是RelativeLayout布局下的居中:

<RelativeLayout xmlns:Android="http://schemas.android.com/apk/res/android" 
  Android:layout_width="fill_parent" Android:layout_height="fill_parent"> 
  <Button Android:id="@+id/btngal" Android:layout_width="wrap_content" 
    Android:layout_height="wrap_content" Android:gravity="center_horizontal" 
    Android:textSize="20sp" Android:layout_alignParentBottom="true" 
    Android:layout_centerHorizontal="true" Android:text="返回主界面" /> 
</RelativeLayout>

简单说明

Android:gravity="CENTER_VERTICAL“:这个是垂直居中对齐

Android:gravity="BOTTOM”:放在容器的底部

Android:gravity="CENTER“ :放在容器的中心

三、一行居中两个按钮的方法

方法1:

<LinearLayout android:layout_width="fill_parent"
  android:layout_height="wrap_content" 
  android:orientation="horizontal" 
  style="@android:style/ButtonBar"> 

<Button android:id="@+id/btn_listview" 
  android:layout_height="wrap_content" 
  android:layout_width="0dp" 
  android:layout_weight="1" 
  android:text="ListView"/> 

<Button android:id="@+id/btn_emptyview" 
  android:layout_height="wrap_content"
  android:layout_width="0dp"
  android:layout_weight="1"
  android:text="EmptyView"/>
</LinearLayout>

方法2:

<RelativeLayout android:id="@+id/relativeTop"  
  android:layout_width="fill_parent" android:layout_height="wrap_content" 
  android:layout_centerHorizontal="true" > 
  <Button  
    android:id="@+id/btnGetMp3s" 
    android:text="@string/strGetMp3List" 
    android:layout_width="wrap_content"  
    android:layout_height="wrap_content"  
    android:gravity="center" 
    android:layout_toLeftOf="@id/txtHide" /> 
  <TextView android:id="@+id/txtHide" android:layout_width="25" android:layout_height="1" 
    android:layout_centerHorizontal="true" /> 
  <Button  
    android:id="@+id/btnExitSys" 
    android:text="@string/strExitSys" 
    android:layout_width="wrap_content"  
    android:layout_height="wrap_content"  
    android:layout_toRightOf="@id/txtHide" /> 
</RelativeLayout> 

更多精彩内容其他人还在看

Android网络编程之获取网络上的Json数据实例

这篇文章主要介绍了Android网络编程之获取网络上的Json数据实例,本文用完整的代码实例讲解了在Android中读取网络中Json数据的方法,需要的朋友可以参考下
收藏 0 赞 0 分享

Android中的windowSoftInputMode属性详解

这篇文章主要介绍了Android中的windowSoftInputMode属性详解,本文对windowSoftInputMode的9个属性做了详细总结,需要的朋友可以参考下
收藏 0 赞 0 分享

Android网络编程之UDP通信模型实例

这篇文章主要介绍了Android网络编程之UDP通信模型实例,本文给出了服务端代码和客户端代码,需要的朋友可以参考下
收藏 0 赞 0 分享

Android中使用ListView实现漂亮的表格效果

这篇文章主要介绍了Android中使用ListView实现漂亮的表格效果,本文用详细的代码实例创建了一个股票行情表格,需要的朋友可以参考下
收藏 0 赞 0 分享

Android中刷新界面的二种方法

这篇文章主要介绍了Android中刷新界面的二种方法,本文使用Handler、postInvalidate两种方法实现界面刷新,需要的朋友可以参考下
收藏 0 赞 0 分享

Android SDK三种更新失败及其解决方法

这篇文章主要介绍了Android SDK三种更新失败及其解决方法,需要的朋友可以参考下
收藏 0 赞 0 分享

Android学习笔记——Menu介绍(一)

Android3.0(API level 11)开始,Android设备不再需要专门的菜单键。随着这种变化,Android app应该取消对传统6项菜单的依赖。取而代之的是提供anction bar来提供基本的用户功能
收藏 0 赞 0 分享

Android学习笔记——Menu介绍(二)

这次将继续上一篇文章没有讲完的Menu的学习,上下文菜单(Context menu)和弹出菜单(Popup menu)
收藏 0 赞 0 分享

Android学习笔记——Menu介绍(三)

今天继续昨天没有讲完的Menu的学习,主要是Popup Menu的学习,需要的朋友可以参考下
收藏 0 赞 0 分享

Android显示网络图片实例

这篇文章主要介绍了Android显示网络图片的方法,以实例形式展示了Android程序显示网络图片的方法,非常具有实用价值,需要的朋友可以参考下
收藏 0 赞 0 分享
查看更多