Hey,
Unfortunately, Android Design does not provide any exit choice but we can exit the application via Intent.
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_HOME);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
This code segment let you perfectly exit the application.
If you have any question, ask me :)