Android URL로 웹 링크 열기
전에 iOS에서 URL로 웹 링크 여는 것을 정리했었죠. iOS6 예외 처리도 정리했었습니다. 이번에는 안드로이드에서 URL로 웹 링크를 열어보도록 하겠습니다.
Uri uri = Uri.parse("http://www.facebook.com/Nowcomgame");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);
위와 같이 간단합니다. Uri 객체에 웹 주소를 넣어주고 ACTION_VIEW 인텐트로 액티비티를 실행하면 됩니다.
Uri uri = Uri.parse("http://www.facebook.com/Nowcomgame");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);
위와 같이 간단합니다. Uri 객체에 웹 주소를 넣어주고 ACTION_VIEW 인텐트로 액티비티를 실행하면 됩니다.
댓글
댓글 쓰기