앱에서 내장 브라우저 직접 호출

|
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(URL));
startActivity(intent);

startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(URL)));

'Android' 카테고리의 다른 글

custom SimpleAdapter  (0) 2011.11.17
title 우측에 progress 출력  (0) 2011.11.17
ListView안에 ScrollView 삽입  (0) 2011.11.16
알림음  (0) 2011.09.20
현재 사용중인 네트웍 종류 반환  (0) 2011.09.20
And