IT 이모저모

안드로이드 Android 특정 URL로 Web Browser 실행하는 방법

exien 2018. 2. 22. 06:58
//  Uri.parse 에 url 주소를 넣으면 브라우져로 실행
Intent i = new Intent(Intent.ACTION_VIEW);
Uri u = Uri.parse("http://exien.tistory.com/guestbook/");
i.setData(u);
startActivity(i);