every time i create an action for sending an email from my app, it prompts to many options including a QR client...
Is there a way to force sending via email clients onl
Intent intent = new Intent(); intent.setAction(Intent.ACTION_VIEW); intent.setData(Uri.parse("mailto:?to=email&subject=hello&body=hello%20world")); startActivity(Intent.createChooser(intent, "Send via..."));
you can try this:::::