コード例 #1
0
ファイル: ARLayout.java プロジェクト: dotfeng/Android
  public boolean evaluateTouch(MotionEvent event) {
    if (SPLASH
        && gpsIcon.getGpsStatus() == GpsIndicator.GPS_STATUS_DISCONNECTED
        && splash.dispatchTouchEvent(event)) return true;
    else if (gpsIcon.dispatchTouchEvent(event)) return true;
    else if (radar.dispatchTouchEvent(event)) return true;
    else if (rightSlide.dispatchTouchEvent(event)) return true;
    else if (titleBar.dispatchTouchEvent(event)) return true;
    else if (poiReinit.dispatchTouchEvent(event)) return true;

    return false;
  }