2013-05-21 149 views
1

我目前正在用xml創建一個活動的佈局,並且內容(FrameLayout)應該填滿整個屏幕。不幸的是,事實並非如此。 只有我改變保證金以下,它的工作原理:
左:-17dp
右:-19dp
上:-16dp
底:-18dp

但是,這不是意圖。 看起來這個屏幕有一個基本的填充。
有什麼方法可以解決這個問題嗎?Android FrameLayout無法填充屏幕

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

只需設置機器人:填充=「0dp」。 – bakriOnFire

+0

究竟在哪裏?我試圖在我的FrameLayout(其中包括一切)但它沒有工作 –

+0

後xml和screenshort的佈局.. – bakriOnFire

回答

1

的FrameLayout裏已經填滿整個屏幕,您正在使用藍色背景填充它(@繪製/ registration_bg)。

上的屏幕截圖所示的選擇是所指定的以下邊距的LinearLayout:

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