RelativeLayout不会填满整个屏幕

时间:2016-01-09 20:25:11

标签: android android-layout android-linearlayout android-relativelayout

我在RelativeLauouts中有三个LinearLayout而我无法让它在我的模拟器上填满整个屏幕?问题是什么?

这是我的xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="match_parent">


<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="0.5">

    <ImageView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/letteord"
        android:layout_centerVertical="true"
        android:layout_centerHorizontal="true"
        android:src="@drawable/letteord"
        android:scaleType="centerCrop"
        android:layout_alignParentEnd="true" />

    <Button
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:text="Let"
        android:id="@+id/letteOrdbutton"
        android:layout_centerVertical="true"
        android:layout_centerHorizontal="true"
        android:textSize="50dp"
        android:background="#a4000000"
        android:textColor="#FFFFFF" />

</RelativeLayout>

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="0.5">

    <ImageView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/normaleord"
        android:layout_centerVertical="true"
        android:layout_centerHorizontal="true"
        android:src="@drawable/normaleord"
        android:scaleType="centerCrop"
        android:layout_alignParentEnd="true" />

    <Button
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:text="Normal"
        android:id="@+id/normaleOrdbutton"
        android:layout_centerVertical="true"
        android:layout_centerHorizontal="true"
        android:textColor="#FFFFFF"
        android:background="#a4000000"
        android:textSize="50dp" />
</RelativeLayout>

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="0.5">

    <ImageView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/svaereord"
        android:layout_centerVertical="true"
        android:layout_centerHorizontal="true"
        android:src="@drawable/svaereord"
        android:scaleType="centerCrop"
        android:layout_alignParentEnd="true" />

    <Button
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:text="Svær"
        android:id="@+id/svaereOrdbutton"
        android:layout_centerVertical="true"
        android:layout_centerHorizontal="true"
        android:textSize="50dp"
        android:textColor="#FFFFFF"
        android:background="#a4000000" />
</RelativeLayout>
</LinearLayout>

我尝试使用和高度更改布局,但仍然无法填满整个屏幕,如您在此屏幕截图中所示:

enter image description here

1 个答案:

答案 0 :(得分:0)

好吧,我在上面的代码中看不到填充或边距。这只是您xml文件中代码的一部分吗?检查您的主要活动布局,看看是否有任何填充或边距。删除它们,如果有,它应该可以正常工作。