現在、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>