1

这是我的代码,我尝试了很多方法来将按钮设置为彼此相邻,但它们不起作用。

我真的很感激你的帮助。

<?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>
4

2 回答 2

2

将 android:orientation="vertical" 更改为 android:orientation="horizo​​ntal"

于 2012-10-27T15:40:47.940 回答
0

您可以通过将 android:orientation="vertical" 更改为 android:orientation="horizo​​ntal" 来实现这一点。如果您发布您的 UI 模式,那么我可以更准确地帮助您,谢谢。

于 2012-10-27T15:52:06.953 回答