본문 바로가기
MOBILE/Android

안드로이드 Browser (Internet) 띄우기

by 지구 2018. 8. 3.

android 에서 특정 URL 로 브라우저 띄우는 방법


아래 두 줄만 추가하면 된다.. 짱쉽..

1
2
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.google.com"));
startActivity(intent);
cs


반응형

댓글