Android Studio 1.1 및 AP1 21 (코스의 일부로 필요한 버전)을 사용하고 있습니다. Google Maps Activity
을 사용하여 새 프로젝트를 만듭니다. 자동으로 생성 된 코드 내에서오류 : (48, 21) 오류 : 기호 방법을 찾을 수 없습니다. getMap()
, 나는 다음과 같은 오류 메시지가 얻을 : Error:(48, 21) error: cannot find symbol method getMap()
의 setUpMapIfNeeded
방법 :
private void setUpMapIfNeeded() {
// Do a null check to confirm that we have not already instantiated the map.
if (mMap == null) {
// Try to obtain the map from the SupportMapFragment.
mMap = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map))
.getMap();
// Check if we were successful in obtaining the map.
if (mMap != null) {
setUpMap();
}
}
}
모든 아이디어를 어떻게이 문제를 해결하기를? 감사!