1. 程式人生 > >兩個listview鑲嵌ScrollView無法同時滑動問題

兩個listview鑲嵌ScrollView無法同時滑動問題

最近在專案中需要在頁面中同時顯示兩個列表,而且在滑動頂部listview到最後一個item的時候整個頁面跟著同時滑動,選擇了listview,發現無法同時滑動,顯示也出現了問題。

解決此問題的方法有很多種,我的解決如下

很簡單,重寫listview就ok了:

XWListView類:


public class XWListView extends ListView {

    public XWListView(Context context) {
        super(context);
    }

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

    public XWListView(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        int mExpandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST);
        super.onMeasure(widthMeasureSpec, mExpandSpec);
    }

}

佈局檔案:


 <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@id/activity_upload_queue_actionbar"
        android:layout_marginBottom="55dp"
        android:fillViewport="true">


        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">
      
                <cn.longmaster.hospital.doctor.ui.consult.XWListView
                    android:id="@+id/activity_upload_queue_upload_result_list"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:divider="@null"
                    android:scrollbars="none" />


                <cn.longmaster.hospital.doctor.ui.consult.XWListView
                    android:id="@+id/activity_upload_queue_list_view"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_marginTop="5dp"
                    android:divider="@null"
                    android:scrollbars="none" />        
          
        </LinearLayout>
    </ScrollView>

activity類中還跟的listview一樣的使用。