"android send email intent with chooser" Code Answer's

You're definitely familiar with the best coding language Kotlin that developers use to develop their projects and they get all their queries like "android send email intent with chooser" answered properly. Developers are finding an appropriate answer about android send email intent with chooser related to the Kotlin coding language. By visiting this online portal developers get answers concerning Kotlin codes question like android send email intent with chooser. Enter your desired code related query in the search bar and get every piece of information about Kotlin code related question on android send email intent with chooser. 

android send email intent with chooser

By Important IbisImportant Ibis on Nov 08, 2020
class MailToExample{
private val url = "https://your_site_addres.xyz"

	@SuppressLint("SetJavaScriptEnabled")
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_mailto)

        val settings: WebSettings = mWebView.settings
        settings.javaScriptEnabled = true
        settings.allowFileAccess = true
        mWebView.webViewClient = object : WebViewClient() {
            override fun shouldOverrideUrlLoading(view: WebView?, urlin: String?): Boolean {
                if (urlin != null) {
                    if (urlin.contains("mailto:")) {
                     	val emailIntent = Intent(Intent.ACTION_SENDTO, Uri.parse(urlin))
                        
                      	// or another way for email creation 
                        // val mail = urlin.replace("mailto:", "")
                        // val emailIntent = Intent(Intent.ACTION_SENDTO, Uri.fromParts("mailto", mail, null))
                        
                      	emailIntent.putExtra(Intent.EXTRA_SUBJECT, "subject")
                        emailIntent.putExtra(Intent.EXTRA_TEXT, "body")
                        startActivity(Intent.createChooser(emailIntent, "Send email"))
                    } else {
                        view?.loadUrl(urlin)
                    }
                }
                return true
            }
        }
        mWebView.postUrl(url)
    }
}

// the case created by reading this resource examples for java
// https://stackoverflow.com/questions/8701634/send-email-intent/8701718#8701718

Add Comment

1

All those coders who are working on the Kotlin based application and are stuck on android send email intent with chooser can get a collection of related answers to their query. Programmers need to enter their query on android send email intent with chooser related to Kotlin code and they'll get their ambiguities clear immediately. On our webpage, there are tutorials about android send email intent with chooser for the programmers working on Kotlin code while coding their module. Coders are also allowed to rectify already present answers of android send email intent with chooser while working on the Kotlin language code. Developers can add up suggestions if they deem fit any other answer relating to "android send email intent with chooser". Visit this developer's friendly online web community, CodeProZone, and get your queries like android send email intent with chooser resolved professionally and stay updated to the latest Kotlin updates. 

Kotlin answers related to "android send email intent with chooser"

View All Kotlin queries

Kotlin queries related to "android send email intent with chooser"

android send email intent with chooser android mailto intent intent kotlin example android is valid email how to verify email in kotlin android studio keep device awake disable portrait mode android android recyclerview scroll to bottom coroutines kotlin android dependency how to call a function after delay in kotlin android android custom AlertDialog theme android long to duration string android startActivity and close all the others android disable landscape mode android vertical seekbar exported android manifest android webview kotlin implement spinner in android kotlin spinner selected item listener android kotlin close dialog android kotlin android click again to exit status bar color android kotlin play sound android studio kotlin android kotlin cannot @+id in MainActivity how to make dialog transparent android android popup menu kotlin kotlin copy text android 10 set margin programmatically android kotlin android start new Activity from an activity with a child change spinner text color android kotlin hide keyboard suggestion android kotlin android kotlin set timerout search bar android studio kotlin android kotlin Avoid passing null as the view root AlertDialog observable kotlin android button inside a recycle view in android in kotlin custom listview in android kotlin with baseadapter with clicklistener android bottomnavigationview leaves blank space after full screen android studio add line at end of class android prevent screenshot in activity android listview search filter custom adapter kotlin how to make a delay in android kotlin android kotlin timer hide keyboard android kotlin kotlin android string resource time text format kotlin android studio android navigation drawer not navigating with navcontroller

Browse Other Code Languages

CodeProZone