android:layout_weight之我见
这个属性很重要,使用的时候需要注意:
1.使用过程中如果觉得奇怪,需要检查下控件的layout_height和layout_width是否需要设置为fill_parent
2.两个同一层次的控件使用这个属性的时候,设置的数字大的,所占的比例反而小,例如android:layout_weight = “3”
android:layout_weight = “1”。显示出来的效果是1:3 我也不知道为什么是这样。希望有知道的能知会一下。
3.如果使用LinearLayout垂直摆放3个控件。上下两个控件不设置android:layout_weight。中间的控件设置为android:layout_weight = “1” 则,意思是:除了上下两个控件各自显示各自的大小,剩下的屏幕部分都被中间控件填充
假设中间是一个不确定大小的ListView,则底部的控件不会被遮盖
比如:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" android:background="#ffffff"> <TextView android:layout_width="fill_parent" android:layout_height="50dip" android:gravity="center" android:textSize="20dip" android:textColor="#ffffff" android:background="#33b5e5" android:text="详细记录"/> <ListView android:id="@+id/sdc_lv_call_detail" android:layout_width="fill_parent" android:layout_height="wrap_content" android:cacheColorHint="#00000000" android:listSelector="@android:color/transparent" android:background="#ffffff" android:layout_weight="1" android:divider="#cccccc" android:dividerHeight="0.5dip"/> <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical" > <!-- 底部的控件 --> </LinearLayout> </LinearLayout>
相关推荐
huha 2020-10-16
xfcyhades 2020-11-20
sgafdsg 2020-11-04
Michael 2020-11-03
fengyeezju 2020-10-14
ziyexiaoxiao 2020-10-14
业余架构师 2020-10-09
OuNuo0 2020-09-29
moses 2020-09-22
Angelia 2020-09-11
qinxu 2020-09-10
刘炳昭 2020-09-10
Nostalgiachild 2020-09-07
Nostalgiachild 2020-08-17
leavesC 2020-08-14
一青年 2020-08-13
AndroidAiStudy 2020-08-07
ydc0 2020-07-30
绿豆饼 2020-07-28