最近使用 NestedScrollView 嵌套使其布局超出屏幕時滑動; 想讓最后一個子布局位于屏幕最底方护奈;
各種方法都不行,后來發(fā)現(xiàn)NestedScrollView 的 子布局不能撐滿整個屏幕哥纫,而是包裹內(nèi)容霉旗,按照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>