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 に答える