일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Android 애드몹
- 컴포넌트
- dynamiclink
- 다이나믹 링크
- 안드로이드 카카오 지도
- Android
- RecyclerView
- 동적 링크
- 안드로이드컴포즈
- android kakao map
- 안드로이드광고
- ImageView
- 파이어베이스
- 애드몹배너
- thread
- component
- android 지도
- JetpackCompose
- 젯팩컴포즈
- glide
- 클린 아키텍처
- Firebase
- 애드몹광고
- 안드로이드
- android daum map
- 선언형UI
- Clean Architecture
- HTTP
- 안드로이드 라이브러리
- 아키텍처
- 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);