After choosing & setting a wallpaper I would like to return to the DEFAULT home screen (i.e. pg 2 of 3) so the user can immediately see the new wallpaper.
Intent intent2 = new Intent(Intent.ACTION_MAIN); intent2.addCategory(Intent.CATEGORY_HOME); intent2.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); startActivity(intent2);
The above works fine, but returns to the last home page used, not necessarily the DEFAULT homepage. Is there an EXTRA or FLAG I can use to accomplish this?