public void onListItemClick(ListView l, View v, final int position, final long id) {
     super.onListItemClick(l, v, position, id);
     
     Intent intent = new Intent(Db1.this, classNames[1]);
     startActivity(intent);
    }    
 
launch3.setOnClickListener(new Button.OnClickListener() {
         public void onClick(View v) {
          finish();
         }
        });


위는 인텐트 넘기기 전이고

두번째 꺼는 액티비티 넘어와서 버튼이 클릭되면 다시 되돌리는 프로그램 인데요..

 

불행히도 안넘어가고 오류가 발생했다믄서 강제 종료가 됩니다.

 

ㅠㅠ 왜 이런거죠??

 

리스트 항목에 따라 다른 액티비티를 넘길려고 하는데,, 아,

물론 넘어갑니다만, 다시 리스트가 있는 메인화면으로 돌아오지 않네요..

ㅠㅠ 어떻게 해야.. ㅠㅠ할까요??