我使用了相对布局,我想将按钮设置在屏幕底部,但是这将所有按钮都放到了底部,我希望有一些边距,因此在屏幕末端之间有一些空间/视图和按钮。但是,由于某种原因,无论我做什么按钮边距,在2.1+上都什么都不做。相对布局包含背景,因此我无法保证其空白。
有人知道解决办法吗?
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="0dp"
android:background="@drawable/background" >
<Button
android:id="@+id/confirm_mobile_button_next"
android:layout_width="fill_parent"
android:layout_height="40dip"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="false"
android:layout_centerHorizontal="false"
android:layout_centerInParent="false"
android:layout_margin="15dp"
android:background="@drawable/button_shape_selector"
android:paddingLeft="10dip"
android:paddingRight="10dip"
android:text="@string/confirm_mobile_no_continue"
android:textColor="@color/white"
android:textStyle="bold" />
</RelativeLayout>
TextView
具有所需高度的空白android:layout_alignParentBottom="true"
并将所需对象(Button
在这种情况下)放在上面。