0
我希望我的TextView
覆蓋實例中的整個屏幕並覆蓋該XML文件中的所有組件。我怎樣才能做到這一點?我希望文本視圖覆蓋整個屏幕
我嘗試了將fill_parent
設置爲android:layout_width
和android:layout_height
,但它不起作用。
我希望我的TextView
覆蓋實例中的整個屏幕並覆蓋該XML文件中的所有組件。我怎樣才能做到這一點?我希望文本視圖覆蓋整個屏幕
我嘗試了將fill_parent
設置爲android:layout_width
和android:layout_height
,但它不起作用。
這很可能是您在父級中設置了填充。 match_parent是多了幾分現代:)
<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>
發表您的佈局XML。 –
我看到它是一個重複的問題。你也提前半小時問過同樣的問題。請耐心等待,有時你會遲到迴應:) –