0

我想将一个按钮对齐到屏幕的最右侧,但我无法做到这一点。我无法在这里使用alignParentRight字段。这是代码:

<LinearLayout 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="horizontal">
    <Button
            android:id="@+id/arrow_left"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@drawable/arrow_left"/>
    <TextView
        android:id="@+id/day_of_the_week"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        />
    <Button
            android:id="@+id/arrow_right"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:
            android:background="@drawable/arrow_right"/>
</LinearLayout>

我该怎么办?我该如何解决?

4

4 回答 4

2

使用 aRelativeLayout而不是 aLinearLayout作为基本布局。然后你就可以实现你想要的。

(即) -android:layout_alignParentRight="true"

于 2013-03-08T14:29:49.147 回答
2

假设您想继续使用您的 linearLayout,您是否尝试过添加

 android:gravity="right"

到你的按钮?

如在

<LinearLayout 
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
        android:id="@+id/arrow_left"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/arrow_left"/>
<TextView
    android:id="@+id/day_of_the_week"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    />
<Button
        android:id="@+id/arrow_right"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="right"
        android:background="@drawable/arrow_right"/>

于 2013-03-08T14:33:38.873 回答
0

使用Relative layout它会像这样解决

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

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

</RelativeLayout>
于 2013-03-08T14:30:32.123 回答
0
use relative layout    
<RelativeLayout 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
       >
        <Button
                android:id="@+id/arrow_left"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentLeft="true"
                android:background="@drawable/arrow_left"/>
        <TextView
            android:id="@+id/day_of_the_week"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            />
        <Button
                android:id="@+id/arrow_right"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentRight="true"
                android:background="@drawable/arrow_right"/>
    </RelativeLayout>
于 2013-03-08T14:42:48.910 回答