3

我有一个使用 FragmentStatePagerAdapter 填充的 viewPager。它工作正常,可以水平浏览填充页面。

然而,viewPager 上每个页面的中间部分是由一个 listView 组成的。这个列表视图有时不适合指定区域,我需要能够垂直滑动。但目前我无法在 viewPager 的这一部分垂直滚动。

看起来 viewPager 正在消耗所有滚动事件(水平和垂直)。

我不想要一个垂直的 viewPager;我在 StackOverflow 上看到了一些答案。

我只希望viewPager中间的部分垂直滚动,而这部分是一个listView

这是带有 viewPager 的选项卡的主布局:

           <LinearLayout 
            android:id="@+id/history"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:orientation="vertical"
            android:background="@color/fdi_gray">
            <android.support.v4.view.ViewPager
                 android:id="@+id/historyFragment_container"
                 android:layout_weight="0.85"
                 android:layout_width="fill_parent"
                 android:layout_height="0dip"/> 
             <include layout="@layout/page_indicator_history"
                android:layout_height="0dip"
                android:layout_width="fill_parent"
                android:layout_weight="0.05"
                android:background="@color/darker_gray"                 
                android:layout_marginTop="2dp"/>
       </LinearLayout>

ViewPager 适配器用来填充 viewPager 上方的布局是这样的:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools" 
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/spaceHolderLocations"> 
<TextView
    android:id="@+id/locationName"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:layout_marginTop="10dp"
    android:layout_centerHorizontal="true"
    android:textStyle="bold"
    android:textSize="17sp"/>
 <TextView
    android:id="@+id/latlon"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:layout_below="@+id/locationName"
    android:layout_marginTop="2dp"
    android:layout_marginBottom="3dp"
    android:layout_centerHorizontal="true"/>

 <View
     android:id="@+id/listViewStart"
     android:layout_width="match_parent"
     android:layout_height="0.5dip"
     android:layout_marginLeft="3dp"
     android:layout_marginRight="3dp"
     android:layout_below="@+id/latlon"          
     android:background="@color/white" />

<ListView
    android:id="@android:id/list"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/fdi_gray"
    android:layout_below="@+id/listViewStart"
    android:layout_marginLeft="3dp"
    android:layout_marginRight="3dp"
    android:divider="@color/white"
    android:dividerHeight="0.5dip"
    android:padding="1dp">       
</ListView>  
<View
     android:id="@+id/listViewEnd"
     android:layout_width="match_parent"
     android:layout_height="0.5dip"
     android:layout_marginLeft="3dp"
     android:layout_marginRight="3dp"
     android:layout_below="@android:id/list"         
     android:background="@color/white" /> 
<TextView
    android:id="@+id/curingLabel"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/listViewEnd"
    android:gravity="center"
    android:text="@string/curingLabel"
    android:layout_marginTop="10dp"
    android:layout_marginLeft="30dp"        
    android:textSize="17sp"/>
 <TextView
    android:id="@+id/curingValue"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_toRightOf="@+id/curingLabel"
    android:layout_marginLeft="30dp"
    android:layout_alignBottom="@+id/curingLabel"
    android:textStyle="bold"        
    android:textSize="17sp"/>       

请注意上述布局中的列表视图。

那是我希望能够滚动的 ViewPager 部分;但不能,如果它不适合页面,我只能水平滚动页面而不是垂直滚动 listView 内容。

这个问题很接近,但这不是我要找的:链接

谢谢。

4

2 回答 2

3

实现以下功能。我希望它对你有帮助。

    mList = (ListView) findViewById(R.id.list);
    mList.setOnTouchListener(new View.OnTouchListener () {

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

当触摸事件发生时,父母总是会拦截该事件。这里的父级是 View Pager。您在这里尝试做的是,当列表视图上出现触摸时,请求父级不要拦截触摸事件。这样,触摸事件就会被Child接收到,这里是ListView,因此会相应地滚动。

于 2013-10-19T05:29:52.033 回答
0

基本上,您不能将列表视图的高度设置为“包装内容”。给出一个固定的高度,或者选择一个不同的布局,比如线性布局并将其权重设置为 1 将是另一种解决方案。如果您将其设置为包装内容,它将占用所有空间并超出屏幕。

于 2013-10-19T06:03:23.850 回答