getFragmentManager().beginTransaction().add(androID.R.ID.content,fragment1).commit();
我的问题是,我如何检测手势?我尝试使用OntouchListener,也使用onIntercepttouchEvent方法.基本上我想检测滑动.我的SwipeGestureDetector看起来像这样:
public class SwipeGestureDetector extends SimpleOnGestureListener { // ... @OverrIDe public boolean onDown(MotionEvent e) { return true; } public boolean onFling(MotionEvent e1,MotionEvent e2,float veLocityX,float veLocityY) { try { if (Math.abs(e1.getY() - e2.getY()) > SWIPE_MAX_OFF_PATH) return false; if (e1.getX() - e2.getX() > SWIPE_MIN_disTANCE && Math.abs(veLocityX) > SWIPE_THRESHolD_VELociTY) { // right to left swipe } else if (e2.getX() - e1.getX() > SWIPE_MIN_disTANCE && Math.abs(veLocityX) > SWIPE_THRESHolD_VELociTY) { // left to right swipe } } catch (Exception e) { // nothing } return false; }}
然后我在我的活动中注册它:
@OverrIDe protected voID onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // .. SwipeGestureDetector swipeDetector = new SwipeGestureDetector(); final GestureDetector detector = new GestureDetector(this,swipeDetector); findVIEwByID(androID.R.ID.content).setontouchListener(new OntouchListener() { @OverrIDe public boolean ontouch(VIEw v,MotionEvent event) { return detector.ontouchEvent(event); } }); }
不幸的是,没有检测到滑动手势.我怎样才能做到这一点?请不要建议使用VIEwPager,我不能使用它.
解决方法 这是我为这个问题做的解决方法.我不得不在我的Activity中覆盖dispatchtouchEvent()方法.当窗口发生触摸事件时调用此方法.
@OverrIDepublic boolean dispatchtouchEvent(MotionEvent ev) { boolean handled = swipeDetector.ontouchEvent(ev); if (!handled) { return super.dispatchtouchEvent(ev); } return handled;}总结
以上是内存溢出为你收集整理的android – Fragment上的手势检测全部内容,希望文章能够帮你解决android – Fragment上的手势检测所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)