안드로이드 앱스에서 웹브라우져 열기.

2010. 12. 20. 14:40안드로이드

728x90
반응형

TextView tv_temp = (TextView)findViewById(R.id.m_Homepage);
String HOMEPAGE = tv_temp.getText()+"";
// URL에 www로만 시작한다면 앞부분에 http://를 추가해주어야 WEB브라우져가 정상적으로 실행됩니다.
if(HOMEPAGE.startsWith("http://") == false)
HOMEPAGE = "http://"+HOMEPAGE;
Uri uri = Uri.parse( HOMEPAGE );
startActivity( new Intent( Intent.ACTION_VIEW, uri ) );


728x90
반응형