我有一个父片段,它持有视图寻呼机。
在view pager中有两个名为1stFragVP和2ndFragVP的片段。
在1stFragVP的布局中,我有Listview。
查看寻呼机可以水平滚动,但列表视图垂直滚动没有发生。
父碎片XML
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:orientation="vertical">
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_below="@id/parent_ll"
android:layout_marginTop="15dp"
android:layout_weight="5">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="45dp">
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
style="@style/CustomTabLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:background="#f1f1f2"
app:elevation="0dp"
app:tabGravity="fill"
app:tabIndicatorColor="@color/orange"
app:tabMode="fixed" />
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</android.support.design.widget.CoordinatorLayout>
</LinearLayout>
第一个FragVP XML
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:background="@color/white"
android:divider="#ebf2f2"
android:dividerHeight="0dp"/>
<RelativeLayout
android:id="@+id/no_item"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="20dp"
android:layout_centerInParent="true"
android:visibility="gone">
<TextView
android:id="@+id/no_item_txt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="@dimen/medium_font" />
</RelativeLayout>
</RelativeLayout>
答案 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:
events.
v.getParent().requestDisallowInterceptTouchEvent(true);
break;
case MotionEvent.ACTION_UP:
events.
v.getParent().requestDisallowInterceptTouchEvent(false);
break;
}
v.onTouchEvent(event);
return true;
}
});
它将禁用父视图触摸管理并将事件传递给您的listview
。