我目前正在为带有 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>