Android

restart app

aucd29 2015. 5. 15. 17:15
Intent intent = new Intent(mContext, YourActivity.class);
int mPendingIntentId = 123; // any number
PendingIntent mPendingIntent = PendingIntent.getActivity(mContext, mPendingIntentId, intent, PendingIntent.FLAG_CANCEL_CURRENT);
AlarmManager mgr = (AlarmManager) mContext.getSystemService(Context.ALARM_SERVICE);
mgr.set(AlarmManager.RTC, System.currentTimeMillis() + 100, mPendingIntent);
System.exit(0);