어플 재시작

android 2017. 6. 27. 14:12

AlarmManager mgr = (AlarmManager) mContext.getSystemService(Context.ALARM_SERVICE);

            PendingIntent restartIntent = PendingIntent.getActivity(

                    mContext, 0, new Intent(mContext.getIntent()),

                    PendingIntent.FLAG_CANCEL_CURRENT);

            mgr.set(AlarmManager.RTC, System.currentTimeMillis() + 1000, restartIntent);

            System.exit(2);

'android' 카테고리의 다른 글

스크롤뷰 스크롤 바닥으로 내리기  (0) 2017.06.28
텍스트 뷰에서 터치시 터치된 단어  (0) 2017.06.28
뒤로 가기 종료  (0) 2017.06.20
이미지뷰 어두워 지는 효과  (0) 2017.06.19
리사이클러뷰 아이템 접근  (0) 2017.06.16

WRITTEN BY
carbo

,