LinearLayout又称作线性布局,是一种非常常用的布局。
android:orientation=”horizontal” 指定线性布局方向:水平
android:orientation=”vertical” 指定线性布局方向:垂直
android:width=”xxxdp” 指定线性布局的容器宽度为:xxxdp
android:width=”wrap_content” 指定线性布局的容器宽度为:根据容器内容宽度大小来填充屏幕宽度
android:width=”match_parent” 指定线性布局的容器宽度为:撑满整个屏幕宽度
android:height=”match_parent” 指定线性布局的容器高度为:撑满整个屏幕高度
android:background=”#000″ 指定线性布局的背景为:黑色(rgb颜色)
android:background=”@android:color/black” 指定线性布局的背景为:黑色(引用android系统自带的原始黑色)
andrid:background=”@color/colorPrimary” 指定线性布局的背景为:(根据res/color.xml 中的colorPrimary所定义的颜色设置)
android:gravity=”center” 指定线性布局中,子容器相对于父容器所在的位置为:正中心
android:gravity=”right” 指定线性布局中,子容器相对于父容器所在的位置为:最右边
android:gravity=”bottom” 指定线性布局中,子容器相对于父容器所在的位置为:最下方
原创文章,作者:kepupublish,如若转载,请注明出处:https://blog.ytso.com/272590.html