如何在RelativeLayout组的视图之间添加空格?

使用TextViewButtonTextView对齐在Button的顶部之后,我试图在Layout_marginBottompaddingBottom之间添加一个空格,但是它们都不起作用。

这是代码:

<TextView
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:text=" Drawing ... "
android:gravity="center_horizontal"
android:layout_alignTop="@id/reset"
android:layout_marginBottom="50dp" />

<Button
    android:id="@+id/reset"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:onClick="reset"
    android:text="Reset" />


谢谢。

最佳答案

尝试这个。

<TextView
    android:layout_height="wrap_content"
    android:layout_width="match_parent"
    android:text=" Drawing ... "
    android:gravity="center_horizontal"
    android:layout_above="@+id/reset"
    android:layout_marginBottom="15dp"/>

<Button
    android:id="@+id/reset"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:onClick="reset"
    android:text="Reset"
    android:layout_alignParentBottom="true"/>

关于android - 如何在RelativeLayout中的 View 之间添加空间,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45888046/

10-09 10:06