구글지도1 Android Studio , URI (Intent)Activity Action / 공통 인텐트 / 구글 지도, 크롬, 다이얼, 전화걸기, 웹검색 (Intent)Activity Action 1) 구글 지도 Uri uri = Uri.parse("geo:37.243, 131.861"); Intent intent = new Intent(Intent.ACTION_VIEW,uri); startActivity(intent); 2) 크롬 Uri uri = Uri.parse("https://javapp.tistory.com/"); Intent intent = new Intent(Intent.ACTION_VIEW,uri); 3) 다이얼 Uri uri = Uri.parse("tel:01012345678"); Intent intent = new Intent(Intent.ACTION_DIAL,uri); 4) 전화걸기 if(Build.VERSION.SDK_INT >= B.. 2020. 7. 30. 이전 1 다음