IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> Android layout_gravity 和 gravity的区别 -> 正文阅读

[移动开发]Android layout_gravity 和 gravity的区别

????????这两个属性,有时候蛮容易混淆,好记性不如烂笔头 ,还是直接记录下来吧

1. android:layout_gravity定义:

android:layout_gravityGravity specifies how a component should be placed in its group of cells.

?android:layout_gravity 是指UI自身控件, 放在父布局中的哪个位置, 举个例子:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="300dp"
tools:context=".MainActivity">

<Button
    android:layout_width="70dp"
    android:background="#992288"
    android:layout_height="50dp"
    android:layout_gravity="bottom"  # 把按钮UI控件,放到父布局LinearLayout的底部位置
    android:text="点击按钮"/>

</LinearLayout>

2. android:gravity定义:?

android:gravity

.Specifies how an object should position its content,

?on both the X and Y axes, within its own bounds.

android:gravity? 是指UI控件里面的元素,放在UI控件里面的哪个位置?举个例子:一个TextView 控件上的“hello?world”字符串,设置android:gravity=“right”,那么“hello world”会显示在TextView的右边

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="300dp"
tools:context=".MainActivity">

<TextView
    android:layout_width="180dp"
    android:background="#992288"
    android:layout_height="50dp"
    android:gravity="right"      #设置hello world字符串 在 TextView UI控件的右边
    android:text="hello world"/>

</LinearLayout>

效果图如下:

?3. 常用属性值:

Constant

? ? ? ? ? ? ? ? ? ? ? ? ? Description

bottom

将对象放在其容器的底部,而不改变其大小。

center

将对象放在其容器的垂直和水平轴中心,不改变其大小。

center_horizontal

将对象放在其容器的水平中心,不改变其大小。

center_vertical

将对象放在其容器的垂直中心,不改变其大小。

end

将对象其容器的末尾,而不改变其大小。

left

将对象放到其容器的左侧,而不改变其大小。

right

将对象到其容器的侧,而不改变其大小。

start

将对象到其容器的起始位置,而不改变其大小。

top

将对象放到其容器的顶部,而不改变其大小。

clip_horizontal

附加选项,用于按照容器的边来剪切对象的顶部和/或底部的内容. 剪切基于其纵向对齐设置:顶部对齐时,剪切底部;底部对齐时剪切顶部;除此之外剪切顶部和底部.

垂直方向裁剪

clip_vertical

附加选项,用于按照容器的边来剪切对象的左侧和/或右侧的内容. 剪切基于其横向对齐设置:左侧对齐时,剪切右侧;右侧对齐时剪切左侧;除此之外剪切左侧和右侧.

水平方向裁剪

fill

如果需要,增加对象的水平和垂直大小,使其完全填满其容器.

fill_horizontal

如果需要,增加对象的水平尺寸,使其完全填满其容器。

fill_vertical

如果需要,增加对象的垂直尺寸,使其完全填满其容器。


4. 使用注意事项

? ? ? ? 第一:android:layout_gravity 是LinearLayout 线性布局中的属性,在RelativeLayout?相对布

局中设置不会生效。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="300dp"
    tools:context=".MainActivity">

    <TextView
        android:id="@+id/test_textview"
        android:layout_width="180dp"
        android:layout_height="50dp"
        android:layout_gravity="right"   <!-- android:layout_gravity 是LinearLayout中的属性,所以在RelativeLayout
                                          相对布局中设置不生效, 所以TextView 不会居右显示-->
        android:background="#992288"
        android:text="hello world" />

    <Button
        android:layout_width="100dp"
        android:layout_height="50dp"
        android:layout_below="@id/test_textview"
        android:layout_marginTop="20dp"
        android:background="@color/colorPrimary"
        android:text="按钮点击"
        android:gravity="right"     <!--但是 android:gravity 也是RelativeLayout相对布局中的属性,所以这里设置是有效的-->
        android:textSize="12sp" />
</RelativeLayout>
效果图如下:

? ? ? ? ?第二: 当采用LinearLayout线性布局作为父布局,

? ? 1. 如果设置?android:orientation="horizontal" :? 元素布局排列为水平方向

这时android:layout_gravity 只有垂直方向的设置属性才会生效,而水平方向的设置属性不生效

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="300dp"
    android:orientation="horizontal"
    tools:context=".MainActivity">

    <TextView
        android:id="@+id/test_textview"
        android:layout_width="180dp"
        android:layout_height="50dp"
        android:layout_gravity="right"
        android:background="#992288"
        android:text="hello world" />
    <!--由于设置的android:orientation="horizontal",
         android:layout_gravity在设置水平方向的属性值 比如 left  start  right  end 不会生效-
         这里我设置为right,预想会显示在右边,但实际上显示在左侧,不生效-->

    <Button
        android:layout_width="100dp"
        android:layout_height="50dp"
        android:layout_marginTop="80dp"
        android:background="@color/colorPrimary"
        android:text="按钮点击"
        android:layout_gravity="bottom"
        android:textSize="12sp" />
    <!--由于设置的android:orientation="horizontal",
        android:layout_gravity在设置垂直平方向的属性值 比如 top bottom  center_vertical 会生效-->

</LinearLayout >

?效果图:

?2. 如果设置?android:orientation="virtical" : 元素布局排列为垂直方向

这时android:layout_gravity 只有水平方向的设置属性才会生效,而垂直方向的设置属性不生效

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="300dp"
    android:orientation="vertical"  
    tools:context=".MainActivity">

    <TextView
        android:id="@+id/test_textview"
        android:layout_width="180dp"
        android:layout_height="50dp"
        android:layout_gravity="bottom"
        android:background="#992288"
        android:text="hello world" />
    <!--由于设置的android:orientation="virtical",
         android:layout_gravity在设置垂直方向的属性值 比如 top  bottom  center_vertical不会生效
         虽然我设置的是bottom,预想显示在底部,实际上不生效-->

    <Button
        android:layout_width="100dp"
        android:layout_height="50dp"
        android:layout_gravity="left"
        android:layout_marginTop="80dp"
        android:background="@color/colorPrimary"
        android:text="按钮点击"
        android:textSize="12sp" />
    <!--由于设置的android:orientation="virtical",
        android:layout_gravity在设置水平平方向的属性值 比如 start left right end 会生效-->

</LinearLayout>

效果图:

  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2022-05-18 17:46:02  更:2022-05-18 17:48:12 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/25 1:56:53-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码