코딩스토리

[Android/ 안드로이드] Error : android.content.ActivityNotFoundException 본문

Android/오류 해결

[Android/ 안드로이드] Error : android.content.ActivityNotFoundException

라크라꾸 2020. 12. 17. 22:43
Uri 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);

 

Comments