일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 선언형UI
- thread
- 안드로이드 라이브러리
- glide
- 아키텍처
- 컴포넌트
- Android
- dynamiclink
- 동적 링크
- 안드로이드
- android 지도
- Android 애드몹
- JetpackCompose
- 안드로이드 카카오 지도
- 다이나믹 링크
- component
- 젯팩컴포즈
- HTTP
- Firebase
- 안드로이드광고
- Clean Architecture
- 애드몹광고
- RecyclerView
- 안드로이드컴포즈
- 파이어베이스
- android daum map
- ImageView
- android kakao map
- 클린 아키텍처
- 애드몹배너
- Today
- Total
코딩스토리
[Android/ 안드로이드] Error : android.content.ActivityNotFoundException 본문
[Android/ 안드로이드] Error : android.content.ActivityNotFoundException
라크라꾸 2020. 12. 17. 22:43Uri uri = Uri.parse("www.naver.com");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
다음과 같이 인터넷 창을 띄우려 했는데
android.content.ActivityNotFoundException: at android.app.Instrumentation.checkStartActivityResult (Instrumentation.java:2071) at android.app.Instrumentation.execStartActivity (Instrumentation.java:1717) at android.app.Activity.startActivityForResult (Activity.java:5250) at androidx.activity.ComponentActivity.startActivityForResult (ComponentActivity.java:568) at android.app.Activity.startActivityForResult (Activity.java:5208) at androidx.activity.ComponentActivity.startActivityForResult (ComponentActivity.java:554) at android.app.Activity.startActivity (Activity.java:5579) at android.app.Activity.startActivity (Activity.java:5547) at
(생략 ...)
과 같은 오류가 뜨는 경우가 있습니다.
보통 ActivityNotFoundException문제는 AndroidManifest.xml파일에 액티비티가 명시되지 않아서 뜨는 경우 발생되지만, 인터넷 새 창을 띄울 때에도 간혹 발생하기도 합니다.
ActivityNotFoundException 문제를 해결하기 위해서는 url 앞에 "http://"를 앞에 추가해주면 문제가 해결됩니다.
Uri uri = Uri.parse("http://www.naver.com");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);