当我设置
android:layout_alignParentBottom="true"
文本移动到屏幕的最底部(只需在我们点击控制移动设备的图像中看到Android屏幕上的蓝色矩形)。
然而,它可以在我的三星设备上正常工作,但我不知道它在Nexus或其他手机屏幕上的显示方式,如AndroidStudio
中的那个。 / p>
答案 0 :(得分:-1)
用于相对布局内部的线性布局,并为它赋予match_parent高度和宽度。
如下所示:
<LinearLayout
android:id="@+id/lay"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
//write your contents here which you give in relative layout
</LinearLayout>