------------------------
0
------------------------
1
------------------------
2
------------------------
3
------------------------
4
------------------------

4번 리스트뷰를 클릭하면 다른 액티비티를 불러오려고 하는데요,

ListView grpList; // 객체 멤버필드에 생성

grpList=(ListView)findViewById(android.R.id.list); // onCreate 메서드에 선언

public void onListItemClick(ListView parent, View v, int position, long id)
    {
super.onListItemClick(parent, v, position, id);
if(position==4) {
Intent intent = new Intent(this, ContactsApp.class);
startActivity(intent);
            }
 }

 이런식으로 코딩했는데 안되네요...  뭔가 잘못한 거 같은데, 도와주세요