ScrollView中的ListView和FrameLayout [BUG]

时间:2015-08-22 14:42:19

标签: java android listview

我有一个主要的布局,包括2个布局,其中一个包含一个带有Fragment的FrameLayout。而另一个包含ListLayout的LinearLayout。这就是看我的主要布局:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fillViewport="true">
        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">
            <include layout="@layout/map_layout" android:layout_height="wrap_content"  android:layout_width="fill_parent" android:layout_weight="1"></include>
            <include layout="@layout/list_layout" android:layout_height="wrap_content"  android:layout_width="fill_parent" android:layout_weight="6"></include>
        </LinearLayout>
    </ScrollView>
</LinearLayout>

第一个片段包含一个地图,第二个片段包含一个带有自己的listAdapter的自定义ListView。

所以在这里我的问题,我知道将ListView放在ScrollView中有点奇怪。但是在我的ListFragment.java的onCreateView中,我把它放在:

        list.setOnTouchListener(new View.OnTouchListener() {
            @Override
            public boolean onTouch(View v, MotionEvent event) {
                v.getParent().requestDisallowInterceptTouchEvent(true);
                return false;
            }
        });

但是ListView继续捕捉滚动。在某个时刻,ScrollView错误并将地图和文件列表放在一个有趣的ScrollView上。

如何才能让它发挥作用?

2 个答案:

答案 0 :(得分:0)

我认为你可以使用这样的东西!

yourListView.setOnTouchListener(new ListView.OnTouchListener() {
            @Override
            public boolean onTouch(View v, MotionEvent event) {
                int action = event.getAction();
                switch (action) {
                    case MotionEvent.ACTION_DOWN:
                        // Disallow ScrollView to intercept touch events.
                        v.getParent().requestDisallowInterceptTouchEvent(true);
                        break;

                    case MotionEvent.ACTION_UP:
                        // Allow ScrollView to intercept touch events.
                        v.getParent().requestDisallowInterceptTouchEvent(false);
                        break;
                }

                // Handle ListView touch events.
                v.onTouchEvent(event);
                return true;
            }
        });

答案 1 :(得分:0)

我终于找到了解决问题的方法。

我需要扩展我的listView,以便它只由ScrollView滚动。这里是我找到的代码:

Helper.java:

public class Helper {
    public static void getListViewSize(ListView myListView) {
        ListAdapter myListAdapter = myListView.getAdapter();
        if (myListAdapter == null) {
        //do nothing return null
            return;
        }
    //set listAdapter in loop for getting final size
        int totalHeight = 0;
        for (int size = 0; size < myListAdapter.getCount(); size++) {
            View listItem = myListAdapter.getView(size, null, myListView);
            listItem.measure(0, 0);
            totalHeight += listItem.getMeasuredHeight();
        }
  //setting listview item in adapter
        ViewGroup.LayoutParams params = myListView.getLayoutParams();
        params.height = totalHeight + (myListView.getDividerHeight() * (myListAdapter.getCount() - 1));
        myListView.setLayoutParams(params);
    }
}

要实现它,你只需要这一行:

Helper.getListViewSize(myList);

我在这里找到了这个解决方案:http://www.androidhub4you.com/2012/12/listview-into-scrollview-in-android.html