반응형
[안드로이드] intent 인터넷, 브라우저 띄우기
먼저 AndroidManifest.xml 에서 퍼미션을 추가해준다.
<uses-permission android:name="android.permission.INTERNET" />
<category android:name="android.intent.category.BROWSABLE" />
그리고 java에서 다음 코드를 추가해준다.
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.google.com"));
startActivity(intent);
반응형
'IT > 안드로이드+JAVA' 카테고리의 다른 글
[안드로이드] 플래그먼트 스와이프 (Fragment 안에 스와이프) PagerAdapter (0) | 2016.08.01 |
---|---|
[안드로이드] extends Fragment 구현시 context 구하는 방법 (1) | 2016.08.01 |
[안드로이드] 화면 세로모드 고정, 화면 가로모드 고정 (0) | 2016.07.28 |
[안드로이드 + 자바] 정규표현식 Patten Match 및 검증방법 (0) | 2016.07.27 |
[안드로이드] 안드로이드스튜디오에서 deprecated된 httpclient 사용하기 (0) | 2016.07.26 |