리그캣의 개발놀이터

안드로이드 로그아웃 구현 본문

개발 공부/Java(Android)

안드로이드 로그아웃 구현

리그캣 2018. 1. 31. 11:27


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
new AlertDialog.Builder(this/* 해당 액티비티를 가르킴 */)
        .setTitle("로그아웃").setMessage("로그아웃 하시겠습니까?")
        .setPositiveButton("로그아웃"new DialogInterface.OnClickListener() {
            public void onClick(DialogInterface dialog, int whichButton) {
                Intent i = new Intent(ClientMainActivity.this/*현재 액티비티 위치*/ , MainActivity.class/*이동 액티비티 위치*/);
                i.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP|Intent.FLAG_ACTIVITY_SINGLE_TOP);
                startActivity(i);
            }
        })
        .setNegativeButton("취소"new DialogInterface.OnClickListener() {
            public void onClick(DialogInterface dialog, int whichButton) {
 
            }
        })
        .show();
cs

출처 : http://es1015.tistory.com/37


Comments