" alignParentBottom"在带有控制底栏的手机上工作?

时间:2016-03-23 07:02:54

标签: android xml android-layout

问题的图像 enter image description here

当我设置

android:layout_alignParentBottom="true"

文本移动到屏幕的最底部(只需在我们点击控制移动设备的图像中看到Android屏幕上的蓝色矩形)。

然而,它可以在我的三星设备上正常工作,但我不知道它在Nexus或其他手机屏幕上的显示方式,如AndroidStudio中的那个。 / p>

1 个答案:

答案 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>