Android FrameLayout没有填充屏幕

时间:2013-05-21 16:36:34

标签: android screen padding fill android-framelayout

我目前正在为xml活动创建布局,内容(FrameLayout)应该填满整个屏幕。不幸的是,事实并非如此。 只有当我将保证金更改为跟随时,它才有效:
左:-17dp
右:-19dp
上:-16dp
下图:-18dp

但这不是意图。 看起来屏幕有一个基本的填充 有什么方法可以解决这个问题吗?

Screen

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/main_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/registration_bg"
android:fillViewport="true"
android:padding="0dp"
tools:context=".MagnetScreen" >

<LinearLayout
    android:id="@+id/main_interface"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginBottom="18dp"
    android:layout_marginLeft="17dp"
    android:layout_marginRight="19dp"
    android:layout_marginTop="16dp"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/registration_headline"
        style="@style/registration"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/registration_headline"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:textSize="@dimen/extra_large"
        android:textStyle="bold" />



</LinearLayout>

1 个答案:

答案 0 :(得分:1)

FrameLayout已经填满整个屏幕,你用蓝色背景填充它(@ drawable / registration_bg)。

屏幕截图中显示的选项是您指定了以下边距的LinearLayout:

android:layout_marginBottom="18dp"
android:layout_marginLeft="17dp"
android:layout_marginRight="19dp"
android:layout_marginTop="16dp"