안드로이드 Android 특정 URL로 Web Browser 실행하는 방법 // Uri.parse 에 url 주소를 넣으면 브라우져로 실행 Intent i = new Intent(Intent.ACTION_VIEW); Uri u = Uri.parse("http://exien.tistory.com/guestbook/"); i.setData(u); startActivity(i); IT 이모저모 2018.02.22