2014-02-27 98 views
0

我希望我的TextView覆蓋實例中的整個屏幕並覆蓋該XML文件中的所有組件。我怎樣才能做到這一點?我希望文本視圖覆蓋整個屏幕

我嘗試了將fill_parent設置爲android:layout_widthandroid:layout_height,但它不起作用。

+4

發表您的佈局XML。 –

+0

我看到它是一個重複的問題。你也提前半小時問過同樣的問題。請耐心等待,有時你會遲到迴應:) –

回答

0

這很可能是您在父級中設置了填充。 match_parent是多了幾分現代:)

1
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    tools:context=".MainActivity" > 

    <TextView 
     android:id="@+id/textView1" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:layout_alignParentBottom="true" 
     android:layout_centerHorizontal="true" 
     android:layout_marginBottom="fill_parent" 
     android:text="TextView" /> 

</RelativeLayout> 

enter image description here

相關問題