0
像絕對佈局所示的錯誤是折舊的。我不明白什麼毛病,使用此佈局使用絕對佈局有錯嗎
<AbsoluteLayout
android:layout_width="match_parent"
android:layout_height="0px"
android:layout_weight="1" >
<WebView
android:id="@+id/webView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
<ImageView
android:id="@+id/slideimage"
android:layout_width="fill_parent"
android:layout_height="420dp"
android:src="@drawable/no_image" />
</AbsoluteLayout>
Thaq。但爲了獲得最佳性能,應使用哪種佈局來獲得絕對佈局的相同效果 – vanooja
@ user3096252始終使用RelativeLayout。 – user3322955
@ user3096252'AbsoluteLayout'的替代品是'FrameLayout'。 – TactMayers