android 管理ViewGroup中的觸控事件
編寫:Andrwyw - 原文:http://developer.android.com/training/gestures/viewgroup.html
因為很多時候是用ViewGroup的子類來做不同觸控事件的目標,而不是ViewGroup本身,所以處理ViewGroup中的觸控事件需要特別注意。 為了確保每個view能正確地接收到它們想要的觸控事件,可以重寫onInterceptTouchEvent()函式。
在ViewGroup中截獲觸控事件
每當在ViewGroup(包括它的子View)的表面上檢測到一個觸控事件,onInterceptTouchEvent()都會被呼叫。如果onInterceptTouchEvent()
返回true
,MotionEvent就被截獲了,這表示它不會被傳遞給其子View,而是傳遞給該父view自身的onTouchEvent()方法。
onInterceptTouchEvent()
方法讓父view能夠在它的子view之前處理觸控事件。如果我們讓onInterceptTouchEvent()
返回true
,則之前處理觸控事件的子view會收到ACTION_CANCEL事件,並且該點之後的事件會被髮送給該父view自身的onTouchEvent()
函式,進行常規處理。onInterceptTouchEvent()
也可以返回false
,這樣事件沿view層級分發到目標前,父view可以簡單地觀察該事件。這裡的目標是指,通過onTouchEvent()
處理訊息事件的view。
接下來的程式碼段中,MyViewGroup
繼承自ViewGroup。MyViewGroup
有多個子view。如果我們在某個子View上水平地拖動手指,該子view不會接收到觸控事件,而是應該由MyViewGroup
處理這些觸控事件來滾動它的內容。然而,如果我們點選子view中的button,或垂直地滾動子view,則父view不會截獲這些觸控事件,因為子view本身就是預定目標。在這些情況下,onInterceptTouchEvent()
應該返回false
,MyViewGroup
的onTouchEvent()
也不會被呼叫。
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 JUST determines whether we want to intercept the motion.
* If we return true, onTouchEvent will be called and we 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; // Do not intercept touch event, let the child handle it
}
switch (action) {
case MotionEvent.ACTION_MOVE: {
if (mIsScrolling) {
// We're currently scrolling, so yes, intercept the
// touch event!
return true;
}
// If the user has dragged her finger horizontally more than
// the touch slop, start the scroll
// left as an exercise for the reader
final int xDiff = calculateDistanceX(ev);
// Touch slop should be calculated using ViewConfiguration
// constants.
if (xDiff > mTouchSlop) {
// Start scrolling!
mIsScrolling = true;
return true;
}
break;
}
...
}
// In general, we don't want to intercept touch events. They should be
// handled by the child view.
return false;
}
@Override
public boolean onTouchEvent(MotionEvent ev) {
// Here we actually handle the touch event (e.g. if the action is ACTION_MOVE,
// scroll this container).
// This method will only be called if the touch event was intercepted in
// onInterceptTouchEvent
...
}
}
注意ViewGroup也提供了requestDisallowInterceptTouchEvent()方法。當子view不想該父view和祖先view通過onInterceptTouchEvent()
截獲它的觸控事件時,可呼叫ViewGroup的該方法。
使用ViewConfiguration的常量
上面的程式碼段中使用了當前的ViewConfiguration來初始化mTouchSlop
變數。我們可以使用ViewConfiguration類來獲取Android系統常用的一些距離、速度、時間值。
“Touch slop”是指在被識別為移動的手勢前,使用者觸控可移動的那一段畫素距離。Touch slop通常用來預防使用者在做一些其他觸控操作時,出現意外地滑動,例如觸控螢幕上的元件。
另外兩個常用的ViewConfiguration函式是getScaledMinimumFlingVelocity()和getScaledMaximumFlingVelocity()。這兩個函式會返回初始化一個快速滑動(fling)的最小、最大速度(分別地),以畫素每秒為測量單位。如:
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 occurred, do something
}
...
case MotionEvent.ACTION_UP: {
...
} if (mMinFlingVelocity <= velocityX && velocityX <= mMaxFlingVelocity
&& velocityY < velocityX) {
// The criteria have been satisfied, do something
}
}
擴充套件子view的可觸控區域
Android提供了TouchDelegate類,讓父view擴充套件超出子view自身邊界的可觸控區域。這在當子view很小,但需要一個更大的觸控區域時非常有用。如果需要,我們也可以使用這種方式來實現對子view的觸控區域的收縮。
在下面的例子中,ImageButton物件是所謂的"delegate view"(是指觸控區域將被父view擴充套件的那個子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>
下面的程式碼段做了這樣幾件事:
- 獲得父view物件併傳送一個Runnable到UI執行緒。這會確保父view在呼叫getHitRect()函式前會佈局它的子view。
getHitRect()
函式會獲得子view在父view座標系中的點選矩形(觸控區域)。 - 找到ImageButton子view,然後呼叫
getHitRect()
來獲得它的觸控區域的邊界。 - 擴充套件ImageButton的點選矩形的邊界。
- 例項化一個TouchDelegate物件,並把擴充套件過的點選矩形和ImageButton子view作為引數傳遞給它。
- 設定父view的TouchDelegate,這樣在touch delegate邊界內的點選就會傳遞到該子view上。
在ImageButton子view的touch delegate範圍內,父view會接收到所有的觸控事件。如果觸控事件發生在子view自身的點選矩形中,父view會把觸控事件交給子view處理。
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 (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 should receive motion
// events.
TouchDelegate touchDelegate = new TouchDelegate(delegateArea,
myButton);
// Sets the TouchDelegate on the parent view, such that touches
// within the touch delegate bounds are routed to the child.
if (View.class.isInstance(myButton.getParent())) {
((View) myButton.getParent()).setTouchDelegate(touchDelegate);
}
}
});
}
}
轉自:http://hukai.me/android-training-course-in-chinese/input/gestures/viewgroup.html
相關文章
- Android中TouchEvent觸控事件機制Android事件
- Android中觸控事件的傳遞機制Android事件
- Android觸控事件(上)——事件的由來Android事件
- Android觸控事件(下)——事件的分發Android事件
- Android觸控事件的應用Android事件
- 觸控事件事件
- Android觸控事件(續)——點選長按事件Android事件
- Android觸控事件傳遞機制Android事件
- Android 觸控事件處理機制Android事件
- Android中的視窗座標體系和螢幕的觸控事件Android事件
- JS觸控事件JS事件
- 觸控事件02事件
- ScrollView 觸控事件View事件
- 初識Android觸控事件傳遞機制Android事件
- android 觸控(Touch)事件、點選(Click)事件的區別(詳細解析)Android事件
- Unity觸控式螢幕觸控事件定義Unity事件
- Android ViewGroup事件分發機制AndroidView事件
- android觸控事件分發機制,曾困惑你我的地方Android事件
- 安卓觸控事件與單擊事件的區別安卓事件
- iOS中觸控事件的傳遞和響應機制iOS事件
- 【Android Developers Training】 67. 響應觸控事件AndroidDeveloperAI事件
- 大領導給小明安排任務——Android觸控事件Android事件
- 十分鐘瞭解Android觸控事件原理(InputManagerService)Android事件
- Android觸控事件的酸甜苦辣以及詳細介紹Android事件
- Flutter:如何響應觸控事件Flutter事件
- 觸控事件獲取座標事件
- Android ViewGroup 事件分發機制詳解AndroidView事件
- 通過程式碼控制View的觸控事件被觸發View事件
- 大領導又給小明安排任務——Android觸控事件Android事件
- [翻譯]整合滑鼠、觸控 和觸控筆事件的Html5 Pointer Event Api事件HTMLAPI
- 微信小程式之觸控事件(六)微信小程式事件
- Android事件傳遞、多點觸控及滑動衝突的處理Android事件
- Android 多點觸控介面Android
- 那些你曾不知道的觸控事件—Android分發機制完全解析事件Android
- 【透鏡系列】看穿 > 觸控事件分發 >事件
- iOS學習筆記05 觸控事件iOS筆記事件
- Android觸控事件全過程分析:由產生到Activity.dispatchTouchEvent()Android事件
- iOS開發系列--觸控事件、手勢識別、搖晃事件、耳機線控iOS事件