欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

安卓布局中常用指令

程序员文章站 2022-04-15 18:43:55
...

安卓布局常用指令

android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_width="match_parent"

match_parent表示让当前控件的大小和父布局的大小一样,也就是由父布局来决定当前控件的大小
wrap_content表示让当前的控件大小能够刚好包含里面的内容,也就是由控件内容决定当前控件的大小
fill_parent表示设置一个构件的布局为fill_parent将强制性地使构件扩展,以填充布局单元内尽可能多的空间。设置一个顶部布局或控件为fill_parent将强制性让它布满整个屏幕。

            android:layout_below="@+id/user_input"
            android:layout_alignParentTop="true"
            android:layout_alignParentBottom="true"


layout_margin就是设置view的上下左右边框的额外空间
layout_marginTop表示距离顶端边框的空间
layout_marginLeft表示距离左端边框的空间
同理layout_marginRight、layout_marginBottom

相关标签: 安卓 安卓