본문 바로가기

android

customadapter 일때 부모창 method 호출

반응형

public static Context mContext_AlarmListDialog; 

부모클래스에서 선언후에 아래 메소드 실행

//((AlarmList) AlarmList.mContext_AlarmListDialog).callAlarmDelete();


하지만 아래것이 더 좋은것 같다. 

// customadapter 일때 부모창 method 호출한다.

((AlarmList) parent.getContext()).callAlarmDelete();

반응형