天天看點

解決NestedScrollView 布局不能撐滿螢幕 的問題

最近使用  NestedScrollView   嵌套使其布局超出螢幕時滑動; 想讓最後一個子布局位于螢幕最底方;

各種方法都不行,後來發現NestedScrollView 的 子布局不能撐滿整個螢幕,而是包裹内容,按照wrap_content來計算,哪怕寫的 match_parent 也沒用;

解決辦法:

添加屬性:

android:fillViewport="true"  
           
<android.support.v4.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fillViewport="true"
        android:overScrollMode="never">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">

            .....

        </LinearLayout>
</android.support.v4.widget.NestedScrollView>
           

繼續閱讀