프로페셜널 할일 예제 예제 문의입니다.
아래의 코드에서 index 말고 리스트의 내용을 얻을 수는 없나요?

public boolean onContextItemSelected(MenuItem item){
     
     super.onContextItemSelected(item);
     switch(item.getItemId()){
     case(REMOVE_TODO):{
      AdapterView.AdapterContextMenuInfo menuInfo;
      menuInfo =(AdapterView.AdapterContextMenuInfo)item.getMenuInfo();
      
      int index = menuInfo.position;
      
      removeItem(index);
      return true;
     }
     }
     return false;
    }