android layout布局,android:layout_gravity和android:gravity

 2023-10-31 阅读 24 评论 0

摘要:本文轉載自:http://blog.csdn.net/dekunchenivan/article/details/6718678# gravity的中文意思就是”重心“,就是表示view橫向和縱向的停靠位置 android:gravity:是對view控件本身來說的,是用來設置view本身的內容應該顯示在view的什么位置,默認
本文轉載自:http://blog.csdn.net/dekunchenivan/article/details/6718678#
gravity的中文意思就是”重心“,就是表示view橫向和縱向的停靠位置
android:gravity:是對view控件本身來說的,是用來設置view本身的內容應該顯示在view的什么位置,默認值是左側。
android:layout_gravity:是相對于包含改元素的父元素來說的,設置該元素在父元素的什么位置
比如TextView: android:layout_gravity表示TextView在界面上的位置,android:gravity表示TextView文本在TextView的什么位置,默認值是左側.
基本選項值:
Value Description
top Put the object at the top of its container, not changing its size.
將對象放在其容器的頂部,不改變其大小.
bottom Put the object at the bottom of its container, not changing its size.
將對象放在其容器的底部,不改變其大小.
left Put the object at the left edge of its container, not changing its size.
將對象放在其容器的左側,不改變其大小.
right Put the object at the right edge of its container, not changing its size.
將對象放在其容器的右側,不改變其大小.
center_vertical Place object in the vertical center of its container, not changing its size.
將對象縱向居中,不改變其大小.
垂直對齊方式:垂直方向上居中對齊。
fill_vertical Grow the vertical size of the object if needed so it completely fills its container.
必要的時候增加對象的縱向大小,以完全充滿其容器.
垂直方向填充
center_horizontal Place object in the horizontal center of its container, not changing its size.
將對象橫向居中,不改變其大小.
水平對齊方式:水平方向上居中對齊
fill_horizontal Grow the horizontal size of the object if needed so it completely fills its container.
必要的時候增加對象的橫向大小,以完全充滿其容器.
水平方向填充
center Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
將對象橫縱居中,不改變其大小.
fill Grow the horizontal and vertical size of the object if needed so it completely fills its container. This is the default.
必要的時候增加對象的橫縱向大小,以完全充滿其容器.
clip_vertical Additional option that can be set to have the top and/or bottom edges of the child clipped to its container's bounds. The clip is based on the vertical gravity: a top gravity clips the bottom edge, a bottom gravity clips the top edge, and neither clips both edges.

附加選項,用于按照容器的邊來剪切對象的頂部和/或底部的內容. 剪切基于其縱向對齊設置:頂部對齊時,剪切底部;底部對齊時剪切頂部;除此之外剪切頂部和底部.

垂直方向裁剪

clip_horizontal Additional option that can be set to have the left and/or right edges of the child clipped to its container's bounds. The clip is based on the horizontal gravity: a left gravity clips the right edge, a right gravity clips the left edge, and neither clips both edges.

附加選項,用于按照容器的邊來剪切對象的左側和/或右側的內容. 剪切基于其橫向對齊設置:左側對齊時,剪切右側;右側對齊時剪切左側;除此之外剪切左側和右側.

水平方向裁剪

示例1

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:layout_width="100dip"
android:layout_height="100dip"
android:layout_gravity="bottom|center_horizontal"
android:background="#00FF00"
android:gravity="center|bottom"
android:text="textview" />
<Button
android:layout_width="100dip"
android:layout_height="100dip"
android:layout_gravity="bottom|left"
android:background="#FF0000"
android:gravity="left|top"
android:text="button" />
</LinearLayout>

顯示結果
android:layout_gravity和android:gravity - hubingforever - 民主與科學
注意:TextView并沒有按照我們設置的android:layout_gravity屬性那樣顯示在界面的下方正中央,Button也沒有顯示在界面的左下方。這是因為我們設置了LinearLayout的android:orientation屬性為"vertical"。對于LinearLayout如果設置android:orientation="vertical",那么android:layout_gravity的設置只在水平方向生效,如上圖TextView顯示在屏幕的水平正中央,而Button顯示在水平方向的最左邊;如果設置android:orientation="horizontal",那么android:layout_gravity屬性只在垂直方向生效
結束!
評論這張
轉發至微博


版权声明:本站所有资料均为网友推荐收集整理而来,仅供学习和研究交流使用。

原文链接:https://hbdhgg.com/5/165643.html

发表评论:

本站为非赢利网站,部分文章来源或改编自互联网及其他公众平台,主要目的在于分享信息,版权归原作者所有,内容仅供读者参考,如有侵权请联系我们删除!

Copyright © 2022 匯編語言學習筆記 Inc. 保留所有权利。

底部版权信息