1

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

但这不是目的。屏幕似乎有一个基本的填充。
有没有办法解决这个问题?

屏幕

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

4

1 回答 1

1

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

屏幕截图上显示的选择是您指定以下边距的 LinearLayout:

android:layout_marginBottom="18dp"
android:layout_marginLeft="17dp"
android:layout_marginRight="19dp"
android:layout_marginTop="16dp"
于 2013-05-21T17:00:39.750 回答