1

我有 2 个按钮,目前设置如下:

<Button android:id="@+id/ff2"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_alignParentRight="true"          
          android:text="Cars"/>

<Button android:id="@+id/ff3"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_alignParentRight="true"          
          android:text="Options"/>
  • 如何将右上角的 2 个按钮相互对齐
4

4 回答 4

5

您可以简单地为此使用 LinearLayout

   <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent" 
        android:orientation="vertical">

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button 1"
            android:layout_gravity="right" />

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button 2"
            android:layout_gravity="right" />

    </LinearLayout>
于 2013-05-20T12:37:53.250 回答
2

使用RelativeLayoutwithlayout_below属性

<RelativeLayout
android:layout_width="wrap_content"
          android:layout_height="wrap_content"
>
<Button android:id="@+id/ff2"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_alignParentRight="true"          
          android:text="Cars"/>

<Button android:id="@+id/ff3"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_below = "@id/ff2"
          android:text="Options"/>
</RelativeLayout>
于 2013-05-20T12:36:16.187 回答
1

将两者都放在LinearLayout带有vertical方向的a中并作为重力赋予它top|left

于 2013-05-20T12:34:19.693 回答
0
<Button android:id="@+id/ff2"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_alignParentRight="true"          
          android:text="Cars"/>

<Button android:id="@+id/ff3"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_alignLeft="@id/ff2"
          android:layout_below = "@id/ff2"
          android:text="Options"/>
于 2013-05-20T12:37:27.063 回答