1. 程式人生 > >NestedScrollView巢狀ListView出現問題以及解決方法

NestedScrollView巢狀ListView出現問題以及解決方法

在使用CoordinatorLayout和AppBarLayout實現巢狀滑動的時候,出現listview沒有巢狀滑動;

如果要實現巢狀滑動,則需要新增NestedScrollView,但是結果發現listview只顯示一行資料

<android.support.v4.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

        <ListView
            android:id="@+id/list_view"
            android:layout_width="match_parent"
            android:layout_height="500dp" />
    </android.support.v4.widget.NestedScrollView>

這需要重寫listview的onMeasure方法

public class NestedListView  extends ListView  {


    public NestedListView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        //測量的大小由一個32位的數字表示,前兩位表示測量模式,後30位表示大小,這裡需要右移兩位才能拿到測量的大小
        int heightSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST);
        super.onMeasure(widthMeasureSpec, heightSpec);
    }



}
結果達到需求的需要
原因:參考: https://blog.csdn.net/talentclass_ctt/article/details/51120832