如题,在ViewFlipper中添加Button和ListView后,如何在触摸Button,LitView的item后,实现左右滑动呢?
Textview和ImageView是可以左右滑动的,但Button和ListView就不知道如何滑动,现在是在ListView上手势滑动变成了单击,要么就没反应。
------解决方案--------------------------------------------------------
学习这样的UI技术
------解决方案--------------------------------------------------------
哇,偶像,这问题我碰到过,解决了,呵呵可以通过
@Override
public boolean dispatchTouchEvent(MotionEvent ev){
this.detector.onTouchEvent(ev);//在这里先处理下你的手势左右滑动事件
return super.dispatchTouchEvent(ev);
}
你试试,我的是这样解决的
------解决方案--------------------------------------------------------
收益收益收益