A adastra Member Licensed User Longtime User Sep 9, 2013 #1 i want to open internal email app of android. how can i do this. can some one help Last edited: Sep 9, 2013
NJDude Expert Licensed User Longtime User Sep 9, 2013 #2 Like this: B4X: Dim i As Intent i.Initialize(i.ACTION_VIEW, "mailto:") StartActivity(i) Upvote 0
A adastra Member Licensed User Longtime User Sep 10, 2013 #3 thank you so much NJDude. But my email app opened in compose mode can it open in inbox mode Upvote 0
NJDude Expert Licensed User Longtime User Sep 10, 2013 #4 The code I posted will open the default email client (or show a list if more than one is installed), to do what you said, you will need to know the client package name and corresponding intent. Last edited: Sep 10, 2013 Upvote 0
The code I posted will open the default email client (or show a list if more than one is installed), to do what you said, you will need to know the client package name and corresponding intent.