Android控制項捕獲點擊事件的範圍

來源:互聯網
上載者:User

標籤:事件分發   android   

View的Tween動畫過程中點擊事件的位置並不會因為動畫位置的改變而改變,是因為在動畫過程中layout的位置實際上沒有變,因此曾經一度認為View的點擊事件(其實不僅僅是點擊事件,包括所有的觸摸事件)觸發的範圍是該View在layout的時候指定的left,top,right,bottom。今天才發現不完全是這樣的。一切都是因為平時看代碼沒有仔細一點所造成了對問題理解不全面。

在這裡記錄一下發現問題到處理問題的過程。


自訂這樣一個ViewGroup,layout兩個線性布局,左邊的LinearLayout覆蓋全螢幕,右面的LinearLayout在螢幕外面隱藏。然後觀察在想做滑動的過程中,第二個LinearLayout顯示出來的過程中,按鈕Button和第二個線性布局的位置資訊:


可以看到,在向左滑第二個線性布顯示出來的過程中,他的位置並沒有變,這裡指的是通過getLeft(),getTop(),getRight(),getBottom()獲得的位置,也就是由layout決定的位置。

既然位置並沒有改變,那麼這時候點擊第二個線性布局和按鈕點擊事件也被響應了,就說明捕獲點擊事件的位置並不完全是在layout的位置。因為並沒有將手伸到螢幕外面去點擊…


回頭來看ViewGroup#dispatchTouchEvent方法在分發觸摸事件的時候:

for (int i = count - 1; i >= 0; i--) {    final View child = children[i];    if ((child.mViewFlags & VISIBILITY_MASK) == VISIBLE            || child.getAnimation() != null) {        child.getHitRect(frame);        if (frame.contains(scrolledXInt, scrolledYInt)) {            // offset the event to the view's coordinate system            final float xc = scrolledXFloat - child.mLeft;            final float yc = scrolledYFloat - child.mTop;            ev.setLocation(xc, yc);            child.mPrivateFlags &= ~CANCEL_NEXT_UP_EVENT;            if (child.dispatchTouchEvent(ev))  {                // Event handled, we have a target now.                mMotionTarget = child;                return true;            }        }} 

其中frame.contains(scrolledXInt, scrolledYInt)函數就是判斷點(scrolledXInt,scrolledYInt)是不是在frame矩形裡面。這個矩形frame是由child.getHitRect(frame);獲得的:

    public void getHitRect(Rect outRect) {        outRect.set(mLeft, mTop, mRight, mBottom);}

顯然這個矩形就是由該子View的Layout的布局參數所決定的。但是scrolledXInt和scrolledYInt參數,並不是我們手指點擊的位置:

final int action = ev.getAction();final float xf = ev.getX();final float yf = ev.getY();final float scrolledXFloat = xf + mScrollX;final float scrolledYFloat = yf + mScrollY;……final int scrolledXInt = (int) scrolledXFloat;final int scrolledYInt = (int) scrolledYFloat;

可以看出,在判斷這個點是否包含在子View內的時候,這個點不是手指所點擊的座標,而是手指點擊的座標加上了mScrollX和mScrollY,然後在判斷是否在該子View的範圍裡面。

現在思考向左滑動的過程中,雖然第二個線性布局的位置沒有變,還是layout的參數位置,是:mLeft:720,mTop:0,mRight:1440,mBottom:1134。

但是他的父View的mScrollX改變了,向左滑mScrollX大於0,這是用手點擊第二個線性布局,手所點擊的位置再加上mScrollX的值,這時就會落在了第二個線性布局的layout的範圍裡面。

 

測試代碼:

自訂MyViewGroup:

public class MyViewGroup extends ViewGroup {public static final String TAG = "MyViewGroup";private int childCount;private GestureDetector detector;private Button btn;private LinearLayout ll2;public MyViewGroup(Context context, AttributeSet attrs, int defStyle) {super(context, attrs, defStyle);init(context);}public MyViewGroup(Context context, AttributeSet attrs) {super(context, attrs);init(context);}public MyViewGroup(Context context) {super(context);init(context);}private void init(final Context context) {detector = new GestureDetector(context, new MyOnGestureListener());LinearLayout ll1 = new LinearLayout(context);ll1.setBackgroundColor(Color.BLUE);ll2 = new LinearLayout(context);ll2.setBackgroundColor(Color.RED);btn = new Button(context);btn.setText("點擊按鈕");ll2.addView(btn);addView(ll1);addView(ll2);setOnTouchListener(new MyTouchEvent());ll2.setOnClickListener(new OnClickListener() {@Overridepublic void onClick(View v) {Toast.makeText(context, "點擊了線性布局2", 0).show();}});btn.setOnClickListener(new OnClickListener() {@Overridepublic void onClick(View v) {Toast.makeText(context, "點擊了Button", 0).show();}});}@Overrideprotected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {super.onMeasure(widthMeasureSpec, heightMeasureSpec);childCount = getChildCount();for (int i = 0; i < childCount; i++) {View child = getChildAt(i);child.measure(widthMeasureSpec,heightMeasureSpec);}}@Overrideprotected void onLayout(boolean changed, int l, int t, int r, int b) {for (int i = 0; i < childCount; i++) {View child = getChildAt(i);child.layout(0+i*getWidth(), 0, (i+1)*getWidth(), getHeight());}}private class MyTouchEvent implements View.OnTouchListener{@Overridepublic boolean onTouch(View v, MotionEvent event) {detector.onTouchEvent(event);return true;}}private class MyOnGestureListener extends SimpleOnGestureListener{@Overridepublic boolean onScroll(MotionEvent e1, MotionEvent e2,float distanceX, float distanceY) {scrollBy((int) distanceX, 0);if (getScrollX()% 10 == 0) {Log.i(TAG, "Button左上右下位置:" + btn.getLeft() + "/"+ btn.getTop() + "/"+ btn.getRight() + "/"+ btn.getBottom());Log.i(TAG, "線性布局2的左上右下位置:" + ll2.getLeft() + "/"+ ll2.getTop() + "/"+ ll2.getRight() + "/"+ ll2.getBottom());Log.i(TAG, "MyViewGroup的mScrollX:" + getScrollX());}return super.onScroll(e1, e2, distanceX, distanceY);}}}

然後在Activity裡面:

public class MainActivity extends Activity {@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(new MyViewGroup(this));}}






Android控制項捕獲點擊事件的範圍

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.