How to open the default mail inbox from android code?
I'm trying to link a button to the mail app. Not to send mail, but just to open the inbox. Should I do this with Intent intent = new Intent(...) ? If so, what should be between the ( ) ? If the goal is to open the default email app to view the inbox, then key is to add an intent category and use the ACTION_MAIN intent like so: Intent intent = new Intent(Intent.ACTION_MAIN); intent.addCategory(Intent.CATEGORY_APP_EMAIL); getActivity().startActivity(intent); https://developer.android.com/reference/android/content/Intent.html#CATEGORY_APP_EMAIL Mayur Bhola Yes, it's possible to open the Android