您好,登錄后才能下訂單哦!
Android ScrollView無法填充滿屏幕的解決辦法
ScrollView滾動視圖是指當擁有很多內容、屏幕顯示不完時、需要通過滾動跳來顯示的視圖、Scrollview的一般用法如下
以下代碼在Scrollview里面放了一個RelativeLayout、并且是設置為Android:layout_height="match_parent"填充全屏的和RelativeLayout里面放置了一個TextView背景設為了一張圖片、按照代碼理解、圖片應該是居于屏幕的最下方的
<ScrollView android:layout_width="match_parent" android:layout_height="match_parent" > <RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/common_background" > <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerHorizontal="true" android:layout_alignParentBottom="true" android:background="@drawable/bottom_bg" /> </RelativeLayout> </ScrollView>
但是最后運行的效果是這樣的、你會發現圖片并沒有局到整個屏幕的下邊、而是在上面ScrollView無法填充滿屏幕,
那么要怎么解決這個問題呢、最后我在查看文檔的時候發現了這樣一個屬性、設置了就可以解決這個問題了
<ScrollView android:layout_width="match_parent" android:layout_height="match_parent" android:fillViewport="true" > </ScrollView>
也就是說設置ScrollView的android:fillViewport為true、即 android:fillViewport="true"即可。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。