728x90
new AlertDialog.Builder(this)
.setTitle("로그아웃")
.setMessage("로그아웃 하시겠습니까?")
.setIcon(R.drawable.ic_people)
.setPositiveButton(android.R.string.yes, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
// 확인시 처리 로직
showShortToastMsg("로그아웃되었습니다.");
getLocalStore().clearTokenValues();
startActivity(intent5);
}})
.setNegativeButton(android.R.string.no, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
// 취소시 처리 로직
showShortToastMsg("취소하였습니다.");
}})
.show();
'Develop > Android' 카테고리의 다른 글
[Android / Play Store] 플레이스토어 Apk 업로드 시 => "업로드할 수 없습니다. 다시 시도해 보세요" 에러 (0) | 2020.11.05 |
---|---|
[Android / Play Console] 게시 취소했다가 다시 심사제출했는데 출시가 안되는 경우 (0) | 2020.08.07 |
[Android] BaseApplication, BaseActivity 활용하기 / 자동로그인 로그아웃 by using LocalStore (0) | 2019.03.09 |
[Android] json으로 데이터 받을 때 {} [] (0) | 2019.03.05 |
[Android] 배포용 apk 만들기 (0) | 2019.03.01 |