구글 길찾기 띄우기1 [Android] Intent 활용 예시 // 웹페이지 띄우기 Uri uri = Uri.parse(“http://www.google.com“); Intent it = new Intent(Intent.ACTION_VIEW,uri); startActivity(it); // 구글맵 띄우기 Uri uri = Uri.parse(“geo:38.899533,-77.036476″); Intent it = new Intent(Intent.Action_VIEW,uri); startActivity(it); // 구글 길찾기 띄우기 Uri uri = Uri.parse(“ http://maps.google.com/maps?f=d&saddr=출발지주소&daddr=도착지주소&hl=ko “); Intent it = new Intent(Intent.ACTION_VIEW,UR.. 2023. 10. 1. 이전 1 다음 반응형