我用滾動型在我的佈局是這樣的:ScrollView在xml佈局?
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<!-- my rest xml code-->
</LinearLayout>
</ScrollView>
然後我的佈局預覽顯示是這樣的:
爲什麼佈局這個樣子的?
複製您的填充XML –
它顯示是因爲您將ScrollView視爲您的根視圖。嘗試放置滾動視圖以外的根視圖。 –
提到你想要的輸出 –