@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
    super.onListItemClick(l, v, position, id);
    switch (position) {
        case 0:
            Intent intent1 = new Intent(getApplicationContext(), intent1.class);
            startActivity(intent1);
            break;
    }
 
 
빨간부분 문장오류뜨는데 이유가 뭔가요ㅜㅜ 초보라서요.
Error:(44, 5) error: method does not override or implement a method from a supertype
이런 오류문구 뜹니다..