I need to call the default home screen that comes with my phone from my application which is also a home screen app. I\'ve tried searching and find this
Hope this will do.
Intent startMain = new Intent(Intent.ACTION_MAIN); startMain.addCategory(Intent.CATEGORY_HOME); startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); startActivity(startMain);