1. 먼저 안드로이드에서 기기를 제어하기 위해 AndroidManifest.xml에 permision을 추가해 줘야 합니다.
<uses-permission android:name="android.permission.INTERNET">
2. 브라우저를 실행하는 코드를 추가합니다.
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.naver.com"));startActivity(intent);
[그림 1-1] 버튼 클릭 예제
[그림 1-2] 실행화면
'OS > android' 카테고리의 다른 글
[android] How to solve "Cannot resolve Symbol 'R'" in android studio (0) | 2016.08.26 |
---|---|
[안드로이드] Android Nougat requires the IDE to be running with Java 1.8 or late (0) | 2016.08.23 |