使用这个属性之后android:layout_alignParentBottom="true" 如何设置控件与上方控件的距离案例
时间: 2024-01-01 07:04:39 浏览: 103
Android EditText随输入法一起移动并悬浮在输入法之上的示例代码
假设你有一个Button控件,你想让它与父布局底部对齐,并且与上方的TextView控件之间有10dp的距离,可以使用以下代码:
```
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:textSize="16sp"
android:layout_marginTop="20dp"/>
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
android:layout_alignParentBottom="true"
android:layout_below="@+id/text_view"
android:layout_marginTop="10dp"/>
</RelativeLayout>
```
在上面的代码中,Button控件使用了android:layout_alignParentBottom="true"属性将其与父布局底部对齐,同时使用了android:layout_below="@+id/text_view"属性将其放置在TextView控件下方。然后,使用了android:layout_marginTop="10dp"属性将Button控件与TextView控件之间的距离设置为10dp。这样就能够实现Button控件与父布局底部对齐,同时与上方的TextView控件之间有10dp的距离。
阅读全文