I want to pop up a dialog that lets the user choose a launcher to be launched with set as default option. I tried
Intent home = new Intent(
Try this :
Intent intent = new Intent("android.intent.action.MAIN"); intent.addCategory("android.intent.category.HOME"); intent.addFlags(Intent.FLAG_RECEIVER_FOREGROUND); getContext().startActivity(intent);