ViewGroup में टच इवेंट मैनेज करना

ViewGroup में टच इवेंट को मैनेज करने का खास ध्यान होता है, क्योंकि ViewGroup के बच्चे आम तौर पर ViewGroup के बजाय, अलग-अलग टच इवेंट को टारगेट करते हैं. यह पक्का करने के लिए कि हर व्यू को, उसके लिए बनाए गए टच इवेंट सही तरीके से मिलें, onInterceptTouchEvent() तरीका बदलें.

किसी ViewGroup में इंटरसेप्ट टच इवेंट

जब भी ViewGroup की सतह पर किसी टच इवेंट का पता चलता है, तब onInterceptTouchEvent() तरीके को कॉल किया जाता है. यह तरीका, उसके चाइल्ड एलिमेंट पर भी लागू होता है. अगर onInterceptTouchEvent(), true दिखाता है, तो MotionEvent को इंटरसेप्ट कर लिया जाता है. इसका मतलब है कि इसे चाइल्ड फ़ंक्शन के बजाय, पैरंट फ़ंक्शन के onTouchEvent() में पास किया जाता है.

onInterceptTouchEvent() तरीके की मदद से, माता-पिता को अपने बच्चों से पहले टच इवेंट देखने का मौका मिलता है. अगर onInterceptTouchEvent() से true दिखाया जाता है, तो पहले टच इवेंट को मैनेज करने वाले चाइल्ड व्यू को ACTION_CANCEL मिलता है. इसके बाद, सामान्य तरीके से मैनेज करने के लिए, इवेंट को माता-पिता के onTouchEvent() तरीके पर भेजा जाता है. onInterceptTouchEvent(), false भी दिखा सकता है और इवेंट पर नज़र रख सकता है, क्योंकि वे व्यू की हैरारकी में अपने सामान्य टारगेट तक जाते हैं. ये टारगेट, अपने onTouchEvent() की मदद से इवेंट मैनेज करते हैं.

नीचे दिए गए स्निपेट में, MyViewGroup क्लास ViewGroup को एक्सटेंड करती है. MyViewGroup में एक से ज़्यादा चाइल्ड व्यू हैं. अगर किसी चाइल्ड व्यू पर उंगली को हॉरिज़ॉन्टल तौर पर खींचा जाता है, तो चाइल्ड व्यू पर टच इवेंट नहीं मिलते. साथ ही, MyViewGroup अपने कॉन्टेंट को स्क्रोल करके टच इवेंट मैनेज करता है. हालांकि, अगर चाइल्ड व्यू में बटन पर टैप किया जाता है या चाइल्ड व्यू को वर्टिकल तौर पर स्क्रोल किया जाता है, तो पैरंट व्यू उन टच इवेंट को इंटरसेप्ट नहीं करता, क्योंकि चाइल्ड व्यू ही टारगेट है. ऐसे मामलों में, onInterceptTouchEvent() false दिखाता है और MyViewGroup क्लास के onTouchEvent() को नहीं बुलाया जाता.

Kotlin

class MyViewGroup @JvmOverloads constructor(
        context: Context,
        private val mTouchSlop: Int = ViewConfiguration.get(context).scaledTouchSlop
) : ViewGroup(context) {
    ...
    override fun onInterceptTouchEvent(ev: MotionEvent): Boolean {
        // This method only determines whether you want to intercept the motion.
        // If this method returns true, onTouchEvent is called and you can do
        // the actual scrolling there.
        return when (ev.actionMasked) {
            // Always handle the case of the touch gesture being complete.
            MotionEvent.ACTION_CANCEL, MotionEvent.ACTION_UP -> {
                // Release the scroll.
                mIsScrolling = false
                false // Don't intercept the touch event. Let the child handle it.
            }
            MotionEvent.ACTION_MOVE -> {
                if (mIsScrolling) {
                    // You're currently scrolling, so intercept the touch event.
                    true
                } else {

                    // If the user drags their finger horizontally more than the
                    // touch slop, start the scroll.

                    // Left as an exercise for the reader.
                    val xDiff: Int = calculateDistanceX(ev)

                    // Touch slop is calculated using ViewConfiguration constants.
                    if (xDiff > mTouchSlop) {
                        // Start scrolling!
                        mIsScrolling = true
                        true
                    } else {
                        false
                    }
                }
            }
            ...
            else -> {
                // In general, don't intercept touch events. The child view
                // handles them.
                false
            }
        }
    }

    override fun onTouchEvent(event: MotionEvent): Boolean {
        // Here, you actually handle the touch event. For example, if the action
        // is ACTION_MOVE, scroll this container. This method is only called if
        // the touch event is intercepted in onInterceptTouchEvent.
        ...
    }
}

Java

public class MyViewGroup extends ViewGroup {

    private int mTouchSlop;
    ...
    ViewConfiguration vc = ViewConfiguration.get(view.getContext());
    mTouchSlop = vc.getScaledTouchSlop();
    ...
    @Override
    public boolean onInterceptTouchEvent(MotionEvent ev) {
        // This method only determines whether you want to intercept the motion.
        // If this method returns true, onTouchEvent is called and you can do
        // the actual scrolling there.

        final int action = MotionEventCompat.getActionMasked(ev);

        // Always handle the case of the touch gesture being complete.
        if (action == MotionEvent.ACTION_CANCEL || action == MotionEvent.ACTION_UP) {
            // Release the scroll.
            mIsScrolling = false;
            return false; // Don't intercept touch event. Let the child handle it.
        }

        switch (action) {
            case MotionEvent.ACTION_MOVE: {
                if (mIsScrolling) {
                    // You're currently scrolling, so intercept the touch event.
                    return true;
                }

                // If the user drags their finger horizontally more than the
                // touch slop, start the scroll.

                // Left as an exercise for the reader.
                final int xDiff = calculateDistanceX(ev);

                // Touch slop is calculated using ViewConfiguration constants.
                if (xDiff > mTouchSlop) {
                    // Start scrolling.
                    mIsScrolling = true;
                    return true;
                }
                break;
            }
            ...
        }

        // In general, don't intercept touch events. The child view handles them.
        return false;
    }

    @Override
    public boolean onTouchEvent(MotionEvent ev) {
        // Here, you actually handle the touch event. For example, if the
        // action is ACTION_MOVE, scroll this container. This method is only
        // called if the touch event is intercepted in onInterceptTouchEvent.
        ...
    }
}

ध्यान दें कि ViewGroup में भी requestDisallowInterceptTouchEvent() वाला तरीका उपलब्ध है. ViewGroup इस तरीके का इस्तेमाल तब करता है, जब बच्चा चाहता है कि माता-पिता और उसके पूर्वज, onInterceptTouchEvent() वाले टच इवेंट को न रोकें.

ACTION_OUTSIDE इवेंट को प्रोसेस करना

अगर ViewGroup को ACTION_OUTSIDE वाला MotionEvent मिलता है, तो यह इवेंट डिफ़ॉल्ट रूप से अपने बच्चों को नहीं भेजा जाता है. MotionEvent को ACTION_OUTSIDE के साथ प्रोसेस करने के लिए, सही View पर भेजने के लिए dispatchTouchEvent(MotionEvent event) को बदलें या इसे काम के Window.Callback में मैनेज करें. उदाहरण के लिए, Activity.

ViewConfiguration के कॉन्स्टेंट का इस्तेमाल करना

ऊपर दिया गया स्निपेट, mTouchSlop नाम के वैरिएबल को शुरू करने के लिए, मौजूदा ViewConfiguration का इस्तेमाल करता है. Android सिस्टम में इस्तेमाल की जाने वाली सामान्य दूरियों, स्पीड, और समय को ऐक्सेस करने के लिए, ViewConfiguration क्लास का इस्तेमाल किया जा सकता है.

"टच स्लोप" का मतलब है कि हाथ के जेस्चर को स्क्रोल करने से पहले, उपयोगकर्ता का टच स्क्रीन में कितनी दूरी बदल सकता है. टच स्लॉप का इस्तेमाल आम तौर पर, गलती से स्क्रोल होने से रोकने के लिए किया जाता है. ऐसा तब होता है, जब उपयोगकर्ता स्क्रीन पर मौजूद एलिमेंट को छूने जैसे किसी दूसरे टच ऑपरेशन को कर रहा हो.

इसके अलावा, आम तौर पर इस्तेमाल किए जाने वाले दो अन्य तरीके ViewConfiguration और getScaledMinimumFlingVelocity()getScaledMaximumFlingVelocity() हैं. ये तरीके, फ़्लिंग शुरू करने के लिए, कम से कम और ज़्यादा से ज़्यादा वेग दिखाते हैं. इनका आकलन, पिक्सल प्रति सेकंड में किया जाता है. उदाहरण के लिए:

Kotlin

private val vc: ViewConfiguration = ViewConfiguration.get(context)
private val mSlop: Int = vc.scaledTouchSlop
private val mMinFlingVelocity: Int = vc.scaledMinimumFlingVelocity
private val mMaxFlingVelocity: Int = vc.scaledMaximumFlingVelocity
...
MotionEvent.ACTION_MOVE -> {
    ...
    val deltaX: Float = motionEvent.rawX - mDownX
    if (Math.abs(deltaX) > mSlop) {
        // A swipe occurs, do something.
    }
    return false
}
...
MotionEvent.ACTION_UP -> {
    ...
    if (velocityX in mMinFlingVelocity..mMaxFlingVelocity && velocityY < velocityX) {
        // The criteria are satisfied, do something.
    }
}

Java

ViewConfiguration vc = ViewConfiguration.get(view.getContext());
private int mSlop = vc.getScaledTouchSlop();
private int mMinFlingVelocity = vc.getScaledMinimumFlingVelocity();
private int mMaxFlingVelocity = vc.getScaledMaximumFlingVelocity();
...
case MotionEvent.ACTION_MOVE: {
    ...
    float deltaX = motionEvent.getRawX() - mDownX;
    if (Math.abs(deltaX) > mSlop) {
        // A swipe occurs, do something.
    }
...
case MotionEvent.ACTION_UP: {
    ...
    } if (mMinFlingVelocity <= velocityX && velocityX <= mMaxFlingVelocity
            && velocityY < velocityX) {
        // The criteria are satisfied, do something.
    }
}

चाइल्ड व्यू के टच किए जा सकने वाले हिस्से को बड़ा करना

Android, TouchDelegate क्लास उपलब्ध कराता है, ताकि माता-पिता, बच्चे के व्यू के टच किए जा सकने वाले हिस्से को, बच्चे की सीमाओं से परे तक बढ़ा सकें. यह तब काम आता है, जब बच्चे की इमेज छोटी हो, लेकिन उसे बड़ा टच रीजन चाहिए. इस तरीके का इस्तेमाल करके, बच्चे के टच किए जाने वाले हिस्से को छोटा भी किया जा सकता है.

नीचे दिए गए उदाहरण में, ImageButton _delegate view_ है. इसका मतलब है कि वह चाइल्ड जिसका टच एरिया पैरंट बढ़ाता है. यहां लेआउट फ़ाइल दी गई है:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
     android:id="@+id/parent_layout"
     android:layout_width="match_parent"
     android:layout_height="match_parent"
     tools:context=".MainActivity" >

     <ImageButton android:id="@+id/button"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:background="@null"
          android:src="@drawable/icon" />
</RelativeLayout>

नीचे दिया गया स्निपेट इन टास्क को पूरा करता है:

  • पैरंट व्यू पाता है और यूज़र इंटरफ़ेस (यूआई) थ्रेड पर Runnable पोस्ट करता है. इससे यह पक्का होता है कि माता-पिता, getHitRect() विधि को कॉल करने से पहले, अपने बच्चों की जानकारी दे दें. getHitRect() तरीका, माता-पिता के निर्देशांक में बच्चे के हिट रेक्टैंगल (या छुई जा सकने वाली जगह) का पता लगाता है.
  • ImageButton चाइल्ड व्यू ढूंढता है और getHitRect() को कॉल करता है, ताकि वह चाइल्ड व्यू के टच किए जा सकने वाले हिस्से के सीमाओं को ऐक्सेस कर सके.
  • ImageButton चाइल्ड व्यू के हिट रेक्टैंगल के बाउंड को बड़ा करता है.
  • बड़ा किया गया हिट रेक्टैंगल और ImageButton चाइल्ड व्यू को पैरामीटर के तौर पर पास करते हुए, TouchDelegate को इंस्टैंशिएट करता है.
  • पैरंट व्यू पर TouchDelegate सेट करता है, ताकि टच डिलीगेट के बाउंड में होने वाले टच, चाइल्ड व्यू पर भेजे जाएं.

ImageButton चाइल्ड व्यू के लिए, टच डेलिगेट की भूमिका के हिसाब से, पैरंट व्यू को सभी टच इवेंट मिलते हैं. अगर टच इवेंट, चाइल्ड के हिट रेक्टैंगल में होता है, तो पैरंट, टच इवेंट को मैनेज करने के लिए चाइल्ड को पास करता है.

Kotlin

public class MainActivity : Activity() {
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)

        // Post in the parent's message queue to make sure the parent lays out
        // its children before you call getHitRect().
        findViewById<View>(R.id.parent_layout).post {
            // The bounds for the delegate view, which is an ImageButton in this
            // example.
            val delegateArea = Rect()
            val myButton = findViewById<ImageButton>(R.id.button).apply {
                isEnabled = true
                setOnClickListener {
                    Toast.makeText(
                            this@MainActivity,
                            "Touch occurred within ImageButton touch region.",
                            Toast.LENGTH_SHORT
                    ).show()
                }

                // The hit rectangle for the ImageButton.
                getHitRect(delegateArea)
            }

            // Extend the touch area of the ImageButton beyond its bounds on the
            // right and bottom.
            delegateArea.right += 100
            delegateArea.bottom += 100

            // Set the TouchDelegate on the parent view so that touches within
            // the touch delegate bounds are routed to the child.
            (myButton.parent as? View)?.apply {
                // Instantiate a TouchDelegate. "delegateArea" is the bounds in
                // local coordinates of the containing view to be mapped to the
                // delegate view. "myButton" is the child view that receives
                // motion events.
                touchDelegate = TouchDelegate(delegateArea, myButton)
            }
        }
    }
}

Java

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        // Get the parent view.
        View parentView = findViewById(R.id.parent_layout);

        parentView.post(new Runnable() {
            // Post in the parent's message queue to make sure the parent lays
            // out its children before you call getHitRect().
            @Override
            public void run() {
                // The bounds for the delegate view, which is an ImageButton in
                // this example.
                Rect delegateArea = new Rect();
                ImageButton myButton = (ImageButton) findViewById(R.id.button);
                myButton.setEnabled(true);
                myButton.setOnClickListener(new View.OnClickListener() {
                    @Override
                    public void onClick(View view) {
                        Toast.makeText(MainActivity.this,
                                "Touch occurred within ImageButton touch region.",
                                Toast.LENGTH_SHORT).show();
                    }
                });

                // The hit rectangle for the ImageButton.
                myButton.getHitRect(delegateArea);

                // Extend the touch area of the ImageButton beyond its bounds on
                // the right and bottom.
                delegateArea.right += 100;
                delegateArea.bottom += 100;

                // Instantiate a TouchDelegate. "delegateArea" is the bounds in
                // local coordinates of the containing view to be mapped to the
                // delegate view. "myButton" is the child view that receives
                // motion events.
                TouchDelegate touchDelegate = new TouchDelegate(delegateArea,
                        myButton);

                // Set the TouchDelegate on the parent view so that touches
                // within the touch delegate bounds are routed to the child.
                if (View.class.isInstance(myButton.getParent())) {
                    ((View) myButton.getParent()).setTouchDelegate(touchDelegate);
                }
            }
        });
    }
}