How can I open mail client from my app, NOT SENDING EMAIL just open the inbox? when I use
Intent intent = new Intent(Intent.ACTION_VIEW); Uri data =
From @CommonsWare answer
This is what worked for me:
Intent intent=Intent.makeMainSelectorActivity(Intent.ACTION_MAIN, Intent.CATEGORY_APP_EMAIL); intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);//Min SDK 15 startActivity(intent);