Please Understand the Question before you Answer.
I'm currently using this code to Reboot my Android Device:
try {
Process proc = Runtime.getRuntime()
.exec(new String[]{ "su", "-c", "reboot" });
proc.waitFor();
} catch (Exception ex) {
ex.printStackTrace();
}
Now, I want to HotBoot (or "Hot Reboot") my Android Phone using Java Code. Does anyone know a way to do this?
(If you don't know what HotBoot is, refer to this link)