将按钮对齐屏幕右下角?

时间:2014-11-01 13:03:13

标签: android xml android-studio

我在“行动”按钮右侧有一个提交按钮:

Submit Button

我试过使用代码:

android:gravity="bottom|right"

但它不起作用,它仍然停留在同一个地方。

我的完整代码是:

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:gravity="bottom"
    android:keepScreenOn="true"
    android:textSize="25dp"
    android:padding="30dp"
    android:textStyle="bold"
    android:textAlignment="center"
    android:text="@string/select_action"
    android:id="@+id/btnSelectPhoto"
    android:layout_alignParentBottom="true"/>

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_toRightOf="@id/btnSelectPhoto"
    android:keepScreenOn="true"
    android:gravity="bottom|right"
    android:padding="30dp"
    android:text="@string/submit"
    android:textSize="25dp"
    android:textStyle="bold"
    android:id="@+id/btnSubmit"
    android:layout_alignParentBottom="true"
    />

即使使用上面的代码,布局仍然与图像相同。我该如何解决这个问题?

修正:添加了android:layout_alignParentRight =“true”,感谢Egor N.

2 个答案:

答案 0 :(得分:2)

android:layout_alignParentRight="true"应该做的工作。但是,你应该摆脱android:layout_toRightOf="@id/btnSelectPhoto"

android:gravity无效,因为此值适用于视图内的内容(按钮内的文字)。

答案 1 :(得分:0)

您可以在两个底部之间使用simlpe视图

例如:

<LinearLayout
    android:orientation="horizontal"
    android:weightSum="3"
    android:layout_width="match_parent"
    android:layout_height="80dp"
>
    <Button
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"/>

    <View
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"/>

    <Button
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"/>
</LinearLayout>