2012-04-29 72 views
0

我正嘗試在Android上使用Google地圖來實現dram移動事件。 裏面的onTouchEvent我想在MotionEvent.ACTION_DOWN進行燒成,用戶可以開始拖動從保存在MotionEvent.ACTION_DOWN中心手柄,並利用MotionEvent.ACTION_MOVE捕捉移動點凍結地圖。最後,當觸發MotionEvent.ACTION_UP時,保存新位置並允許地圖再次移動。如何在平移時防止Google地圖移動?

我有不同的選項來往,但還沒有找到一種方法呢。任何打擊都會有幫助。

謝謝。

回答

0

我結束了在設置中心MotionEvent.ACTION_MOVE當前正在拖動的覆蓋。

mapController.setCenter(selectedPoint.getPoint());//drag the handle here 
相關問題