use of com.ryuunoakaihitomi.rebootmenu.util.TextToast in project rebootmenu by ryuunoakaihitomi.
the class UnRootMode method onRestart.
@Override
protected void onRestart() {
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
if (!isScreenOn)
new TextToast(getApplicationContext(), getString(R.string.activity_onrestart_notice));
isScreenOn = false;
}
}, 1000);
super.onRestart();
}
Aggregations