71

我使用了相对布局,我想将按钮设置在屏幕底部,但是这会将其全部放在底部,我希望有一些边距,因此屏幕末端之间有一些空间/视图和按钮。但是,无论我做什么,按钮边距都出于某种原因在 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>
4

10 回答 10

75

您可以简单地向 RelativeLayout 添加填充,而不是向 Button 添加边距,例如android:paddingBottom="15dp".

一般来说,我总是使用 API Level 8 设置在 Exclipse 预览中测试我的布局。这为大多数设备提供了相当准确的结果,包括 ICS 和 JB。

于 2012-11-18T15:55:55.580 回答
34

您可以做的另一件事是放置一个View与底部对齐的RelativeLayout,并将其高度设置为您想要使用的底部边距(或简单地为 指定一个值layout_marginBottom),如下所示:

 <RelativeLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"        
    > 
    <ImageView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/some_image"
        android:adjustViewBounds="true"

         />
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Some Overlay"
        android:padding="3dip"
        android:gravity="center_vertical|center_horizontal"

        android:layout_above="@+id/empty_view"
        android:layout_marginBottom="35dip"
        />
    <View 
        android:id = "@+id/empty_view"
        android:layout_height = "30dip"
        android:layout_width = "match_parent"
        android:visibility="invisible"
        android:layout_alignParentBottom="true"
        />

    </RelativeLayout>

此示例用 填充RelativeLayoutImageView并将 aTextView放置在 上ImageView

于 2013-09-19T04:18:32.640 回答
20

可以使用 translateY 属性

translateY="-16dp"

最终代码

<?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"
        android:translateY="-16dp" />

</RelativeLayout>
于 2016-07-21T09:07:20.517 回答
4

@franny zhao 建议的唯一工作解决方案如下。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <FrameLayout
        android:id="@+id/fl_layout"
        android:layout_alignParentBottom="true"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">
        <TextView
            android:id="@+id/tv_layout"
            android:text="hello world"
            android:layout_marginBottom="50dp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
    </FrameLayout>
</RelativeLayout>

如果您按照其他人的建议将填充添加到底部对齐的视图中,则视图背景也会扩展。如果你有彩色背景,那么视图看起来就像粘在底部一样。填充和边距完全不同,填充是视图的一部分,但边距在视图之间留下空间。

于 2017-05-16T11:13:14.613 回答
2

我认为最好的方法是在 XML 中设置 android:layout_alignParentBottom 然后在后面的 java 代码中:

Button confirm_mobile_button_next = (Button)findViewById(R.id.confirm_mobile_button_next)

confirm_mobile_button_next.setTransitionY(-THE_VALUE) or setTransitionX(-THE_VALUE)
于 2015-01-09T14:20:41.003 回答
2

我认为最好的方法是设置:

<...
android:layout_alignParentBottom="true" />

然后在java代码后面:

Button confirm_mobile_button_next = (Button)findViewById(R.id.confirm_mobile_button_next)
confirm_mobile_button_next.setTransitionY(-THE_VALUE) or setTransitionX(-THE_VALUE)
于 2015-01-09T14:25:21.123 回答
2

您可以使用 ViewGroup(例如 FrameLayout 或 LinearLayout)来包装视图。在外部 ViewGroup 中设置 alignParentBottom,则 marginBottom 可以在内部 View 中工作。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <FrameLayout
        android:id="@+id/fl_layout"
        android:layout_alignParentBottom="true"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">
        <TextView
            android:id="@+id/tv_layout"
            android:text="hello world"
            android:layout_marginBottom="50dp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
    </FrameLayout>
</RelativeLayout>
于 2016-11-14T08:55:25.393 回答
1

由于我偶然发现了这个问题,并且没有看到适合我的情况的答案,我开始思考半秒钟并通过在 RelativeLayout 示例中的视图上设置负边距来解决它:

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <ImageView
    android:layout_width="48dp"
    android:layout_height="48dp"
        android:layout_marginTop="-8dp"
        android:layout_marginStart="-8dp">
</RelativeLayout>

这应该证明对某些人有用。

于 2014-12-23T14:21:55.107 回答
-1

以这种方式尝试:

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

<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="true"
    android:layout_marginBottom="17dp"
    android:text="Button" />

于 2012-11-18T16:00:02.293 回答
-3

这是另一种选择。如果您想设置子级的边距而不是父级的内边距,您应该将 的值设置android:layout_marginTop为所需边距的两倍,然后将 设置android:layout_centerVertical为 true。上边距被赋予期望值的两倍以补偿下边距。这样,您将在子视图周围拥有相等的顶部和底部边距。

<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_centerVertical="true"
    android:layout_centerInParent="false"
    android:layout_marginLeft="15dp"
    android:layout_marginRight="15dp"
    android:layout_marginTop="30dp"
    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" />

它会给你同样的结果。

于 2013-05-21T18:06:27.080 回答