티스토리 뷰
Computer/Android
[Android] 다른 Activity의 ListView새로고침하기 (notifyDataSetChanged)
jamezc 2019. 5. 15. 02:031.새로고침하고자 하는 Activity의 Context를 전역변수로 만들어 준다.
public static Context CONTEXT;
2.onCreate 부분에서 Context의 값을 지정해준다.
CONTEXT = this;
3.다른 Activity에서 위의 Context의 onResume() 메서드를 호출한다
((ListActivity)ListActivity.CONTEXT).onResume();
※ 해당 내용은 onResume() 메서드를 통해 새로고침한다는 가정하에 작성한 내용.
onResume() 메서드에 새로고침에 관한 내용이 있어야 한다.
@Override
public void onResume() {
super.onResume();
ListView.notifyDataSetChanged();
}
'Computer > Android' 카테고리의 다른 글
AdMob 모바일 광고 SDK (0) | 2019.06.26 |
---|---|
[Android] Context removed error when activity destroyed (0) | 2019.06.16 |
Calling ui thread from worker thread (0) | 2019.02.13 |
Google Android Sample Code Git (0) | 2019.02.09 |
구글계정 지급보류 문제해결 (0) | 2019.02.04 |
댓글