解决方法
只需做一个线性的布局.将方向设置为水平,并添加两个按钮.它准备好你会得到你想要的.在发布这样的问题之前,尝试谷歌搜索,你会得到答案肯定.这段代码将帮助你.
<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" > <Button android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Button" /> <Button android:id="@+id/button2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Button" /> </LinearLayout>
如果您想要将layout.give中的两个按钮设为两个按钮的重量.