我正在尝试以LinearLayout
编程方式添加水平,确保第二个孩子
占据它需要的所有宽度,第一个孩子将占据剩下的所有空间。
我没有要添加的代码,因为我尝试了很多选项,但还没有任何效果。
任何的想法?
设置android:layout_weight="0"
为第二个孩子。对于第一个子集android:layout_weight="1"
。
试试这个改变button3的文本
<?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="horizontal"
android:weightSum="1.0" >
<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Back" />
<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Read sad s as d" />
</LinearLayout>