제가 지도에서 더블클릭을 할 경우 지도가 줌인이 되는 것을 하고싶은뎅

MapView googleMap;를 전연변수로 주고

public void onCreate(Bundle savedInstanceState){
......
googleMap.setFocusable(true);
}

한후

@Override
public boolean onTouchEvent(MotionEvent event) {
  // TODO Auto-generated method stub

 super.onTouchEvent(event);

  if(event.getAction() == MotionEvent.ACTION_DOWN)
  {
   Log.d("asd","Asdasd");
  }

  return true;
 }

이렇게 했는데 로그가 안뜨네요...

디버그로 logcat을 보면

ERROR/ActivityThread(450): Failed to find provider info for com.google.settings...요놈과
ERROR/MapActivity(450): Couldn't get connection factory client 요놈이 뜹니다.

왜 터치시 로그가 안뜨는지 수정좀 부탁드릴께요 ㅜ