Android学习——解决NestedScrollView 布局不能撑满屏幕的问题

发现使用  NestedScrollView   嵌套使其布局超出屏幕时滑动; 想让最后一个子布局位于屏幕最底方;

各种方法都不行,后来发现NestedScrollView 的 子布局不能撑满整个屏幕,而是包裹内容,按照wrap_content来计算,哪怕写的 match_parent 也没用;

解决办法:

添加属性:

android:fillViewport="true"  
          android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fillViewport="true"
        android:overScrollMode="never">
 
                    android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">
 
            .....
 
       

 

你可能感兴趣的:(Android学习)