最佳答案
我使用了一个相对布局,我想设置按钮在屏幕底部,但是这把它所有的底部,我想有一些边距,这样就有一些空间之间的结束屏幕/视图和按钮。然而,不管我做什么,在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>