編輯:高級開發
一、onTouch
onTouch是VIEw中OnTouchListener接口中的方法,處理View及其子類被touch是的事件處理。當然,前提是touch時間能夠傳遞到指定的vIEw。Q1:為什麼會傳遞不到呢?
- /**
- * Interface definition for a callback to be invoked when a touch event is
- * dispatched to this vIEw. The callback will be invoked before the touch
- * event is given to the vIEw.
- */
- public interface OnTouchListener {
- /**
- * Called when a touch event is dispatched to a vIEw. This allows listeners to
- * get a chance to respond before the target vIEw.
- *
- * @param v The vIEw the touch event has been dispatched to.
- * @param event The MotionEvent object containing full information about
- * the event.
- * @return True if the listener has consumed the event, false otherwise.
- */
- boolean onTouch(VIEw v, MotionEvent event);
- }
二、onTouchEvent
onTouchEvent同樣也是在view中定義的一個方法。處理傳遞到vIEw 的手勢事件。手勢事件類型包括ACTION_DOWN,ACTION_MOVE,ACTION_UP,ACTION_CANCEL四種事件。
- /**
- * Implement this method to handle touch screen motion events.
- *
- * @param event The motion event.
- * @return True if the event was handled, false otherwise.
- */
- public boolean onTouchEvent(MotionEvent event) {
- ……
- ……
- }
一旦onTouchEvent方法被調用,並返回true則這個手勢事件就結束了,並不會向下傳遞到子控件。Q2:onTouchEvent什麼時候被調用呢?
三、onInterceptTouchEvent
onInterceptTouchEvent是在VIEwGroup裡面定義的。android中的layout布局類一般都是繼承此類的。onInterceptTouchEvent是用於攔截手勢事件的,每個手勢事件都會先調用onInterceptTouchEvent。
- public boolean onInterceptTouchEvent(MotionEvent ev) {
- return false;
- }
此方法返回false,則手勢事件會向子控件傳遞;返回true,則調用onTouchEvent方法。
Union Square Ventures公司投資人、AVC博客作者弗雷德·威爾遜(Fred Wilson)一直是android的鐵桿支持者。最近他寫了篇文章指出,盡管
繼PHP for android實現之後,微軟.Net for android,也就是MonoDroid,也將馬上進入Beta測試階段,最終的MonoDroid產品將在
Stericson和Kastro是兩位知名軟件研發人員,他們研發的MetaMorph工具受到了很多軟件開發者的喜愛,近日,Stericson研發推出了一款新的工具,名字
android手機系統的一個重要特點就是它的應用框架和GUI庫都用Java語言實現,使用目前開發界使用最廣泛的開發語言,一定會使android手機系統在性能方面比其他的