Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android實現button居中的方法

Android實現button居中的方法

編輯:關於Android編程

本文實例講述了Android實現button居中的方法。分享給大家供大家參考。具體如下:

通過在main.xml 或者其他xml 布局文件中布局Button的時候,選擇Android:gravity="center_horizontal",意思是Place object in the horizontal center of its container, not changing its size.我們用RelativeLayout 布局,這樣可以使不同的組件有對齊的方式。

main.xml:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:Android="http://schemas.android.com/apk/res/android"
  Android:layout_width="fill_parent"
  Android:layout_height="fill_parent">
  <TextView Android:id="@+id/gallerytext"
    Android:layout_width="fill_parent"
    Android:layout_height="wrap_content">
  </TextView>
  <Gallery Android:id="@+id/gallery"
    Android:layout_width="fill_parent"
    Android:layout_height="wrap_content">
  </Gallery>
  <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>

運行效果截圖:

簡單說明:

可以看到Button 與Gallery的對齊方式是居中對齊,也即Button 與Parent居中對齊。
另外,
Android:gravity="CENTER_VERTICAL":這個是垂直居中對齊
Android:gravity="BOTTOM":放在容器的底部
Android:gravity="CENTER" :放在容器的中心

希望本文所述對大家的Android程序設計有所幫助。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved