장삼의 착한코딩

[Android] 웹 브라우저로 특정 Url 실행하기 본문

Android

[Android] 웹 브라우저로 특정 Url 실행하기

wkdgusdn3 2015. 8. 25. 14:45

Intent intent = new Intent(Intent.ACTION_VIEW);
Uri uri = Uri.parse("http://www.naver.com");
intent.setData(uri);
startActivity(intent);

위의 코드를 넣어주면 안드로이드 기본 웹브라우저로 링크가 열리게 됩니다.


Comments