Android實現button置中的方法_Android

來源:互聯網
上載者:User

本文執行個體講述了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程式設計有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.