[Study] intent 사용중 stopped unexpectedly 발생 할때
IT,PC,모바일,스마트폰 정보와 팁 그리고 제품리뷰와 생활정보
[Study] intent 사용중 stopped unexpectedly 발생 할때
2011. 7. 12. 23:36
Android 공부중 Intent 를 사용해서 한개의 프로젝트로 여러가지 예제를 넣어서 공부 하려고 했는데..
아무것도 모르는 상태에서 Intent 를 사용 하려니.. " stoppted unexpectedly. Please try again." 이 발생 했네요..
exam.java
public void onClick(View v) { switch (v.getId()){ case R.id.btn: ImageView img=(ImageView)findViewById(R.id.img); if (img.getVisibility() == View.VISIBLE) { img.setVisibility(View.INVISIBLE); }else { img.setVisibility(View.VISIBLE); } break; case R.id.btn2: Intent intent = new Intent(layout_exam.this, Multi_page.class); startActivityForResult(intent, 1); //Toast.makeText(layout_exam.this,"토스트짜잔",Toast.LENGTH_SHORT).show(); } }그냥 무턱 대고 Intent 를 사용해서 새로운 activity 를 불러왔더니 바로 에러 나네요..
Intent 로 새로운 activity 를 불로 오려면 반드시 Manifest 에 Activity 를 추가 하셔야 합니다..
Manifest 를 열어서 Application 에 Activity 를 Add 해줍니다..
Name 에 추가할 Activity 를 써줍니다..
그리고 저장~~ 그러면 정상적으로 잘 실행 됩니다.. 후후후;;;
Skin By KEBIBLOG Ver 1.0 Copyright ⓒ KEBI BLOG. All rights reserved.