안드로이드 개발 질문/답변
(글 수 45,052)
double latitute = 37.38493;
double longitute = 127.123453;
Uri geoUri = Uri.parse("geo:" + latitute+ longitute );
Intent geoIntent = new Intent(Intent.ACTION_VIEW, geoUri);
startActivity(Intent.createChooser(geoIntent, "Map"));
이렇게 실행을 하면 네비 어플과 구글맵 두가지가 뜨고, 그 중에 선택을 할 수 있는데,
두 가지 중에서 첫 번째 나오는 네비 어플은 무조건 실행이 되네요.
원인과 해결책을 알고 계시는 분 계시나요?