PowerManager manager = (PowerManager) getSystemService(Context.POWER_SERVICE); manager.goToSleep(int amountOfTime);
You may also need this permission:
<uses-permission android:name="android.permission.WAKE_LOCK" />
The answer is extracted from here.
source share