1、线性布局 LinearLayout
属性:
android:layout_width="宽度参数";
android:layout_height="高度参数";
/***
宽度参数1 match_parent【填充父窗体】
宽度参数1 wrap_content【包裹自身内容】
android:orientation="vertical";
//控件排列方向——垂直【orientation意为:朝向】
android:orientation="horizontal";
//控件排列方向——水平
android:layout_weight="1";
//布局权重比例
*/
android:text="显示文本内容";
//控件文本显示【文本控件适用】
重要参数 【朝向orientation="vertical 或horizontal" 】
layout_weight="1";【权重,控制控件在父窗体里面显示的比例】
“可利用权重属性制作一个计算器”
网友评论