android:gravity与layout_gravity的区别

作者 : 开心源码 本文共1290个字,预计阅读时间需要4分钟 发布时间: 2022-05-13 共201人阅读

LiearLayout 中子元素的两个重点属性

? ? 1)gravity 表示内容的对齐方式

? ? 2)layout_gravity:表示布局(相对父容器)的对齐方式

? ? ? ? 说明:

? ? ? 当LiearLayout布局的对齐方式为

? android:orientation=”horizontal”

? ? ? 时,layout_gravity的值为top,bottom,center_vertical

? ? ? 当LiearLayout布局的对齐方式为

? android:orientation=”vertical”

? ? ? 时,layout_gravity的值为left,right,center_horizontal

<LinearLayout

? ? ? ? android:id=”@+id/layout”

? ? ? ? android:layout_width=”match_parent”

? ? ? ? android:layout_height=”wrap_content”

? ? ? ? android:orientation=”vertical”

? ? ? ? >

? ? ? ? <TextView

? ? ? ? ? ? android:layout_width=”wrap_content”

? ? ? ? ? ? android:layout_height=”wrap_content”

? ? ? ? ? ? android:text=”LinearLayout”

? ? ? ? ? ? android:textSize=”30sp”

? ? ? ? ? ? android:layout_gravity=”center_horizontal”/>

? ? </LinearLayout>

<LinearLayout

? ? ? ? android:id=”@+id/layout”

? ? ? ? android:layout_width=”match_parent”

? ? ? ? android:layout_height=”wrap_content”

? ? ? ? android:orientation=”horizontal”

? ? ? ? >

? ? ? <Button

? ? ? ? ? android:layout_width=”0dp”

? ? ? ? ? android:layout_height=”wrap_content”

? ? ? ? ? android:layout_weight=”1″

? ? ? ? ? android:text=”ButtonOne”

? ? ? ? ? />

? ? ? <Button

? ? ? ? ? android:layout_width=”0dp”

? ? ? ? ? android:layout_height=”wrap_content”

? ? ? ? ? android:layout_weight=”1″

? ? ? ? ? android:text=”Btn05″

? ? ? ? ? />

? ? ? <Button

? ? ? ? ? android:layout_width=”0dp”

? ? ? ? ? android:layout_height=”wrap_content”

? ? ? ? ? android:layout_weight=”1″

? ? ? ? ? android:text=”Btn06″

? ? ? ? ? />

? ? </LinearLayout>

说明
1. 本站所有资源来源于用户上传和网络,如有侵权请邮件联系站长!
2. 分享目的仅供大家学习和交流,您必须在下载后24小时内删除!
3. 不得使用于非法商业用途,不得违反国家法律。否则后果自负!
4. 本站提供的源码、模板、插件等等其他资源,都不包含技术服务请大家谅解!
5. 如有链接无法下载、失效或广告,请联系管理员处理!
6. 本站资源售价只是摆设,本站源码仅提供给会员学习使用!
7. 如遇到加密压缩包,请使用360解压,如遇到无法解压的请联系管理员
开心源码网 » android:gravity与layout_gravity的区别

发表回复