国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 系統(tǒng) > Android > 正文

解決ViewPager和SlidingPaneLayout的滑動(dòng)事件沖突問(wèn)題

2019-12-12 01:20:11
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

問(wèn)題描述:

ViewPager和SlidingPaneLayout的滑動(dòng)事件沖突。

問(wèn)題分析:

在手指左右滑動(dòng)時(shí),SlidingPaneLayout會(huì)屏蔽ViewPager的滑動(dòng)事件。

解決辦法:

自定義SlidingPaneLayout類(lèi)

import android.content.Context;import android.support.v4.view.MotionEventCompat;import android.support.v4.widget.SlidingPaneLayout;import android.util.AttributeSet;import android.view.MotionEvent;import android.view.ViewConfiguration;public class PagerEnabledSlidingPaneLayout extends SlidingPaneLayout { private float mInitialMotionX; private float mInitialMotionY; private float mEdgeSlop; public PagerEnabledSlidingPaneLayout(Context context) {  this(context, null); }public PagerEnabledSlidingPaneLayout(Context context, AttributeSet attrs) {  this(context, attrs, 0); }public PagerEnabledSlidingPaneLayout(Context context, AttributeSet attrs, int defStyle) {  super(context, attrs, defStyle);  ViewConfiguration config = ViewConfiguration.get(context);  mEdgeSlop = config.getScaledEdgeSlop(); } @Override public boolean onInterceptTouchEvent(MotionEvent ev) {  switch (MotionEventCompat.getActionMasked(ev)) {   case MotionEvent.ACTION_DOWN: {    mInitialMotionX = ev.getX();    mInitialMotionY = ev.getY();    break;   }   case MotionEvent.ACTION_MOVE: {    final float x = ev.getX();    final float y = ev.getY();    if (mInitialMotionX > mEdgeSlop && !isOpen() && canScroll(this, false,      Math.round(x - mInitialMotionX), Math.round(x), Math.round(y))) {      MotionEvent cancelEvent = MotionEvent.obtain(ev);     cancelEvent.setAction(MotionEvent.ACTION_CANCEL);     return super.onInterceptTouchEvent(cancelEvent);    }   }  }  return super.onInterceptTouchEvent(ev); }}

以上這篇解決ViewPager和SlidingPaneLayout的滑動(dòng)事件沖突問(wèn)題就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持武林網(wǎng)。

發(fā)表評(píng)論 共有條評(píng)論
用戶(hù)名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 陆丰市| 富蕴县| 吴旗县| 博乐市| 长春市| 濮阳县| 邹城市| 嵊泗县| 平泉县| 九龙县| 灵石县| 方城县| 黄龙县| 江北区| 新源县| 绍兴县| 大同县| 张家川| 沙坪坝区| 竹山县| 龙里县| 高青县| 平谷区| 公安县| 新昌县| 湖州市| 乾安县| 安吉县| 景谷| 河池市| 比如县| 阿尔山市| 滨海县| 专栏| 原平市| 南平市| 怀宁县| 和平县| 安义县| 拜泉县| 桂平市|