การจัดการกิจกรรมการสัมผัสใน
ViewGroup
ดูแลเป็นพิเศษ
เพราะเป็นเรื่องปกติที่ ViewGroup
จะมีเด็กที่ตกเป็นเป้าหมายของ
กิจกรรมการสัมผัสอื่นๆ นอกเหนือจาก ViewGroup
เอง เพื่อให้แน่ใจว่าข้อมูลพร็อพเพอร์ตี้แต่ละรายการจะได้รับ
เหตุการณ์การสัมผัสที่จะกำหนดไว้ ลบล้าง
onInterceptTouchEvent()
โปรดดูแหล่งข้อมูลที่เกี่ยวข้องต่อไปนี้
สกัดกั้นกิจกรรมการสัมผัสใน ViewGroup
มีการเรียกใช้เมธอด onInterceptTouchEvent()
เมื่อใดก็ตามที่ตรวจพบเหตุการณ์การแตะใน
พื้นผิวของViewGroup
รวมถึงพื้นผิวของลูกๆ ถ้า
onInterceptTouchEvent()
แสดงผล true
ซึ่งเป็นค่า
MotionEvent
ถูกดักฟัง ซึ่งหมายความว่าจะไม่ส่งผ่านไปยังเด็ก แต่จะส่งต่อให้กับ
onTouchEvent()
ของระดับบนสุด
เมธอด onInterceptTouchEvent()
ช่วยให้ผู้ปกครองมีโอกาสเห็นกิจกรรมการแตะ
ก่อนที่เด็กๆ จะได้ทำ หากคุณส่งคืน true
จาก onInterceptTouchEvent()
มุมมองย่อยที่ก่อนหน้านี้จัดการกิจกรรมการแตะจะได้รับ
ACTION_CANCEL
,
และระบบจะส่งเหตุการณ์นับจากจุดนั้นเป็นต้นไปไปยังเมธอด onTouchEvent()
ของผู้ปกครอง
เพื่อให้ใช้งานตามปกติได้ onInterceptTouchEvent()
จะส่งคืน false
และ
สอดแนมเหตุการณ์ต่างๆ ในลำดับชั้นการดูไปจนถึงเป้าหมายปกติ ซึ่งจัดการ
กิจกรรมที่มี onTouchEvent()
ของตัวเอง
ในข้อมูลโค้ดต่อไปนี้ คลาส MyViewGroup
จะขยาย ViewGroup
MyViewGroup
มีข้อมูลพร็อพเพอร์ตี้ย่อยหลายรายการ หากคุณลากนิ้วผ่านมุมมองย่อย
ในแนวนอน มุมมองย่อยจะไม่แสดงกิจกรรมการแตะอีกต่อไป และ MyViewGroup
จะจัดการกับการแตะ
โดยการเลื่อนเนื้อหา อย่างไรก็ตาม หากคุณแตะปุ่มในมุมมองย่อยหรือเลื่อนหน้าจอย่อย
เป็นมุมมองแนวตั้ง ผู้เผยแพร่โฆษณาหลักจะไม่สกัดกั้นกิจกรรมการสัมผัสเหล่านั้นไว้ เนื่องจากผู้เผยแพร่โฆษณาย่อยเป็น
เป้าหมาย ในกรณีดังกล่าว onInterceptTouchEvent()
จะแสดงผล false
และ
ระบบไม่เรียก onTouchEvent()
ของชั้นเรียน MyViewGroup
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
ได้รับ MotionEvent
ที่มี
ACTION_OUTSIDE
,
ระบบจะไม่ส่งเหตุการณ์ไปยังผู้เผยแพร่โฆษณาย่อยโดยค่าเริ่มต้น เพื่อประมวลผล MotionEvent
ด้วย
ACTION_OUTSIDE
ลบล้างอย่างใดอย่างหนึ่ง
dispatchTouchEvent(MotionEvent event)
เพื่อส่งไปยัง View
หรือ
จัดการกับเรื่องนี้
Window.Callback
สำหรับ
เช่น Activity
ใช้ค่าคงที่ ViewConfiguration
ข้อมูลโค้ดก่อนหน้าใช้ ViewConfiguration
ปัจจุบันเพื่อเริ่มต้นตัวแปร
ที่ชื่อ mTouchSlop
คุณใช้ชั้นเรียน ViewConfiguration
เพื่อเข้าถึงได้
ระยะทาง ความเร็ว และเวลาทั่วไปที่ระบบ Android ใช้
"แตะพื้น" หมายถึงระยะทางเป็นพิกเซลที่การแตะของผู้ใช้สามารถเลื่อนไปก่อนท่าทางสัมผัสหนึ่งๆ ถูกตีความว่าเป็นการเลื่อน โดยทั่วไปจะใช้ Touch Slop เพื่อป้องกันการเลื่อนโดยไม่ตั้งใจเมื่อผู้ใช้ กำลังทำการแตะอย่างอื่น เช่น การแตะองค์ประกอบบนหน้าจอ
อีก 2 วิธีที่ใช้กันโดยทั่วไปคือ 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
ในเธรด UI การดำเนินการนี้ช่วยให้ผู้ปกครองจัดวางบุตรหลานได้ก่อนที่จะโทรหาgetHitRect()
เมธอดgetHitRect()
จะได้รับสี่เหลี่ยมผืนผ้า Hit ของผู้เผยแพร่โฆษณาย่อย (หรือ พื้นที่ที่สัมผัสได้) ในพิกัดของผู้ปกครอง - ค้นหามุมมองบุตรหลาน
ImageButton
และโทรหาgetHitRect()
เพื่อรับ ขอบเขตของพื้นที่ที่สัมผัสได้ของเด็ก - ขยายขอบเขตสี่เหลี่ยมของมุมมองย่อยของ
ImageButton
- ยกตัวอย่าง
TouchDelegate
โดยส่งในสี่เหลี่ยม Hit ที่ขยายและImageButton
มุมมองย่อยเป็นพารามิเตอร์ - ตั้งค่า
TouchDelegate
ในมุมมองระดับบนสุดเพื่อให้แตะภายในตัวมอบสิทธิ์การแตะ จะมีการกำหนดเส้นทางขอบเขตไปยังผู้เผยแพร่โฆษณาย่อย
อยู่ในขีดความจุในฐานะตัวแทนการแตะสำหรับมุมมองย่อย ImageButton
มุมมองหลัก
รับกิจกรรมการสัมผัสทั้งหมด ถ้าเหตุการณ์การแตะเกิดขึ้นภายในสี่เหลี่ยม Hit ของผู้เผยแพร่โฆษณาย่อย
ส่งเหตุการณ์การแตะไปยังผู้เผยแพร่โฆษณาย่อยเพื่อจัดการ
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); } } }); } }