解决 Android中用里ScrollView 之后 Activity 中的 onTouchEvent 失效问题

失效的原因是因为 TouchEvent() 首先被 scrollView 中的onTouchEvent() (ScrollView 中也有这个方法) ,而且ScrollView  的 onTouchEvent() 执行完了之后,返回的是 true 所以此时,事件停止传播。即这个时候 Activity 中的onTouchEvent 将不会被回调了。 所以呢。解决的方法是 自定义一个ScrollView。


例如:


[java] view plaincopy
  1. import android.content.Context;  
  2. import android.util.AttributeSet;  
  3. import android.view.MotionEvent;  
  4. import android.widget.ScrollView;  
  5.   
  6. public class MyScrollView extends ScrollView  
  7. {  
  8.       
  9.     public MyScrollView(Context context)  
  10.     {  
  11.         super(context);  
  12.   
  13.     }  
  14.   
  15.     public MyScrollView(Context context, AttributeSet attrs)  
  16.     {  
  17.         super(context, attrs);  
  18.           
  19.     }  
  20.       
  21.     public MyScrollView(Context context, AttributeSet attrs, int defStyle)  
  22.     {  
  23.         super(context, attrs, defStyle);  
  24.     }  
  25.       
  26.     @Override  
  27.     public boolean onInterceptTouchEvent(MotionEvent event)   //这个方法如果返回 true 的话 两个手指移动,启动一个按下的手指的移动不能被传播出去。  
  28.     {  
  29.         super.onInterceptTouchEvent(event);  
  30.         return false;  
  31.     }  
  32.       
  33.     @Override  
  34.     public boolean onTouchEvent(MotionEvent event)//这个方法如果 true 则整个Activity 的 onTouchEvent() 不会被系统回调  
  35.     {  
  36.         super.onTouchEvent(event);  
  37.         return false;         
  38.     }  
  39.           
  40. }  




自定义了以上代码之后我们就可以在布局xml中编写

[html] view plaincopy
  1. <org.youpackage.name.MyScrollView xmlns:android="http://schemas.android.com/apk/res/android"  
  2.     android:layout_width="match_parent"  
  3.     android:layout_height="match_parent"  
  4.     android:fillViewport="true">  
  5.     <LinearLayout  
  6.          android:layout_width="match_parent"  
  7.          android:layout_height="match_parent"  
  8.          android:orientation="vertical"  
  9.          >   
  10.             ......   //这里放组件  
  11.     </LinearLayout>  
  12.   
  13.  </org.youpackage.name.MyScrollView 
  14.  
  15.   
  16.  经过这个定义之后 Activity 中的 onTouchEvent() 就回被调用了。  
  17.  有什么不懂的可以留言。技术最重要就是交流了。 关于事件的传播,我也是一知半解,如有前辈,望指点一下。 
  18.   转自:http://blog.csdn.net/failure01/article/details/8525709   
  19.       
发布了136 篇原创文章 · 获赞 16 · 访问量 43万+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章