答案 0 :(得分:0)
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="sometext"
android:layout_weight="1"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="sometext"
android:layout_weight=".1"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="sometext"
android:layout_weight=".1"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="sometext"
android:layout_weight="1"/>
</LinearLayout>