这是我的代码,我尝试了很多方法来将按钮设置为彼此相邻,但它们不起作用。
我真的会帮助你。
<?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="wrap_content"
android:orientation="vertical" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_alignParentLeft="true" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1" />
</LinearLayout>
答案 0 :(得分:2)
将android:orientation =“vertical”更改为android:orientation =“horizontal”
答案 1 :(得分:0)
您可以通过将android:orientation =“vertical”更改为android:orientation =“horizontal”来实现此目的。如果您发布了UI模式,那么我可以更精确地帮助您,谢谢。