Intent 썸네일형 리스트형 [Intent] android.content.ActivityNotFoundException : Unable to find explicit activity class Logcat에서 android.content.ActivityNotFoundException : Unable to find explicit activity class 라는 메시지가 출력된다면 AndroidManifest.xml파9일에 intent하려는 액티비티가 선언되있나 확인해보자 선언이 안되있다면? 이와같이 android:name 과 label은 위에 다른엑티비티랑 똑같이 쓰되 android:name에서 com.example.mediaedit.추가하려는액티비티명 이렇게 써주자. 조금 더 큰 세상 바라보기 프로젝트 (아래사진 클릭시 링크로 이동) 나를 성장시켜줄 첫번째 도구 - 똑똑이 (아래사진 클릭시 링크로 이동) 더보기 Intent Intent intent = new Intent(현재액티비티.this, 이동할액티비티); Intent intent = new Intent(this,SecondActivity.class); 인텐트시 값을 전달할 경우 intent.putExtra("전달내용을 대표하는 키값",전달내용"); 값을 전달받는 경우 ( SecondActivity.class입장에서) Intent intent = getIntent(); String msg = intent.getStringExtra("전달할 키"); 더보기 이전 1 다음