layout_weight
1、实现了水平方向50%平均分割
<Linearlayout
Android:orientation="horizontal">
<TextView
android:layout_width="0dp"
android:layout_height="wrap_height"
android:layout_weight="1"
android:text="测试1"/>
<TextView
android:layout_width="0dp"
android:layout_height="wrap_height"
android:layout_weight="1"
android:text="测试2"/>
</LinearLayout>
2、实现了竖直方向50%平均分割
<LinearLayout
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="1"
android:text="测试1"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="1"
android:text="测试2"/>
</LinearLayout>
注意:以水平方向为例,当layout_width都设置为match_parent时,layout_weight比重值越大,占的比例越小;
当layout_width都设置为wrap_content/0dp时,layout_weight比重值越大,占的比例越大
相关阅读
LinearLayout的layout_weight属性的计算
layout_weight表示view分配到的额外的布局空间,可正可负。布局的时候,系统先按照view的layout_width和layout_height来布局,然后再根
问题今天做项目有一个需求,一个TextView单行显示,多出来的字使用跑马灯效果,然后一个TextView后面要跟一个图片,当时想着怎么弄好呢,文
Android布局基础知识:wrap_content,match_parent,layou
wrap_content:是layout_width和layout_height的属性值之一,表示和自身内容一样的长度。match_parent:是layout_width和layout_heig