Global It Leader!!



 
 

모바일 뒤로가기 두번으로 앱 종료 하기

페이지 정보

작성자 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 댓글 1건 조회 1,980회 작성일 15-05-14 14:02

본문

우선 Activity를 하나 만든다

이 엑티비티는 메니페스트에 등록할 필요 없다.. 그냥 하나의 클래스라 생각하자

 

public class MyBaseActivity extends Activity {
 public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  
  //백버튼 종료
  mHandler = new Handler() {
      @Override
      public void handleMessage(Message msg) {
          if(msg.what == 0) {
//              mFlag = false;
           ChatRaderMain.MFLAG = false;
          }
      }
  };
 }
 
 private Handler mHandler;

 public void onBackPressed() {
        if(!ChatRaderMain.MFLAG) {
            Toast.makeText(MyBaseActivity.this, "'뒤로'버튼을 한번 더 누르시면 종료됩니다.", Toast.LENGTH_SHORT).show();
            ChatRaderMain.MFLAG = true;
            mHandler.sendEmptyMessageDelayed(0, 2000);
        } else {
            finish();
            System.exit(0);
        }
 }
 
 
}

 

# 사용예

뒤로가기 두번으로 종료 하고 싶은 엑티비티에서 상속을 받아 주면 된다

public class MainActivity extends MyBaseActivity {

 

}

댓글목록

전체 79
게시물 검색
모바일세상 목록
번호 제목 글쓴이 조회 날짜
59 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2392 05-18
58 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 1979 05-14
열람중 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 1981 05-14
56 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5596 05-14
55 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2011 05-07
54 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2261 04-20
53 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2403 03-31
52 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2208 03-31
51 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2298 09-01
50 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2706 09-01
49 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 1859 09-01
48 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 1968 09-01
47 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2491 09-01
46 제이쿼리 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 1984 09-01
45 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2145 08-31
44 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2014 08-31
43 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3616 08-31
42 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2165 08-30
41 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 1987 08-30
40 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3259 08-29