我在LinearLayout中有两个并排的TextViews,但第二个TextView占用的空间比第一个多,我希望两者都采用相同的宽度,这就是为什么我使用layout_weight="1"
但没有解决我的问题,请查看以下内容:
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_margin="20dp"
android:gravity="center">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableLeft="@drawable/as_individual"
android:gravity="center_vertical"
android:drawablePadding="5dp"
android:layout_weight="1"
android:textColor="#ffffff"
android:text="As" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:drawableLeft="@drawable/for_company"
android:gravity="center_vertical"
android:textColor="#ffffff"
android:drawablePadding="5dp"
android:text="For Company"/>
</LinearLayout>
答案 0 :(得分:3)
尝试替换
android:layout_width="wrap_content"
通过
android:layout_width="0dp"
每个TextView都。
适合我。
答案 1 :(得分:3)
如果您想要layout_wight
用于水平Linearlayouts
android:layout_width
必须为"0dp"
,对于垂直布局,您需要设置android:layout_height="0dp"
答案 2 :(得分:1)
将Textviews的属性 android:layout_height 更改为
android:layout_height="0dp"
或
android:layout_height="fill_parent"
答案 3 :(得分:0)
你正在将宽度重写为“wrap_content”,这就是问题,因为第一个textview的内容小于第二个就是你应该做的事情。
<LinearLayout
android:layout_width="fill_parent"
android:orientation="horizontal"
android:layout_height="wrap_content">
<TextView
android:layout_width="fill_parent"
android:text="This is first"
android:layout_weight="1"
android:layout_height="match_parent" />
<TextView
android:layout_width="fill_parent"
android:text="This is second asdasdasdasdasdasdasdasdasd"
android:layout_weight="1"
android:layout_height="match_parent" />
</LinearLayout>