我有一个包含三个元素的布局,其方向是“水平”
我想修复每个元素在布局中占用的大小。
第一个元素应该占总空间的40%,然后第二个元素占据5%,第三个元素占据剩余的55%空间。
我的布局如下:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="100" >
<TextView
android:id="@+id/outletname"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="40"
android:text="@string/outlet_name2" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="5"
android:text=": " />
<TextView
android:id="@+id/outletnamevalue"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="55"
android:text="abcdefttt" />
</LinearLayout>
</LinearLayout>
'TextView'中的文本会动态变化,所以我想保留元素的常量空间,而不管视图中的内容是什么......
答案 0 :(得分:45)
为了使权重生效,您还必须将 TextViews 的 width 设置为 0dp
android:layout_width="0dp"
答案 1 :(得分:0)
我使用这个公式:
layout_weight=(weightSum-PercentageYouWant*weightSum)/(TotalElements-1)
第一个元素应该占总空间的40%,然后第二个元素占据5%,第三个元素占据剩余的55%空间。
第一元素:
(100-0.4*100)/(3-1)="30"
第二元素:
(100-0.05*100)/(3-1)="47.5"
第三元素:
(100-0.55*100)/(3-1)="22.5"
所以40% + 5% + 55% = 100%
layout_weight="30" + layout_weight="47.5" + layout_weight="22.5" = weightSum="100"
这就是我的理解。
这是一个例子(按钮仅用于图形参考)
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="120" >
<!-- WeightSum=120 and I will add 4 elements, so TotalElements=4 -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="36"
android:orientation="vertical" >
<!-- I want this LinearLayout to be 10%, so (120-10%*120)/(4-1)=36 -->
<Button
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="10%" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="32"
android:orientation="vertical" >
<!-- I want this LinearLayout to be 20%, so (120-20%*120)/(4-1)=32 -->
<Button
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="20%" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="28"
android:orientation="vertical" >
<!-- I want this LinearLayout to be 30%, so (120-30%*120)/(4-1)=28 -->
<Button
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="30%" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="24"
android:orientation="vertical" >
<!-- I want this LinearLayout to be 40%, so (120-40%*120)/(4-1)=24 -->
<Button
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="40%" />
</LinearLayout>
</LinearLayout>