With the below code we can validate email address in android.
import android.os.Bundle
import android.view.View
import android.widget.EditText
import android.widget.Toast
import androidx.appcompat.app.AppCompatActivity
class MainActivity : AppCompatActivity() {
private lateinit var editText: EditText
private lateinit var email: String
private val emailPattern = "[a-zA-Z0-9._-]+@[a-z]+\\.+[a-z]+"
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
title = "KotlinApp"
editText = findViewById(R.id.editText)
email = editText.text.toString().trim()
}
fun validateEmail(view: View?) {
if (email.matches(emailPattern.toRegex())) {
Toast.makeText(applicationContext, "Valid email address",
Toast.LENGTH_SHORT).show()
} else {
Toast.makeText(applicationContext, "Invalid email address",
Toast.LENGTH_SHORT).show()
}
}
}
What is Context?
How to stop EditText focus at Activity startup in Android?
Hide/Disable soft keyboard on Activity launch: Android
Symmetric vs Asymmetric Encryption in Android Server - RRutors
Add Jar/Library Files as Dependency in Android Studio
Android Studio project R can't find
What is the difference between match_parent and fill_parent?
What happens next when the device switches between portrait and landscape?
How to Get bitmap from drawable: Android
How to convert milli seconds to hours, minutes and seconds in Android?
How can i comment inside xml file in android studio?
How do I generate random numbers in Dart?
Invoke-customs are only supported starting with android 0 --min-api 26
What is Android?
How to start a new activity on button click
What is NetworkOnMainThread Exception?
How to Generate signed apk with android studio
Fix Play Store Rejection Due to SMS Permission - RRutors
What is ANR in android?
How to copy database from assets folder in android using kotlin
Fix Duplicate Files in APK Build.gradle Issue - RRutors
How to Exit android app on back pressed?
Open PDF in Google Drive with Intent in Android - RRutors
Fix Error: Use JsonReader.setLenient(true) for Malformed JSON
Fix Android Emulator Kill Error When Running Your App
How do I check in SQLite whether a table exists?
What is Intent? What is the difference between an implicit intent and an explicit intent?
How to avoid multiple button click at same time in android?
How to get an image resource by it's name in android?
INSTALL_FAILED_INVALID_APK: Split lib_slice_9_apk was defined multiple times. It is possible that th
What is the Different Between val and var in Kotlin?
What is ANR? How to avoid and resolve it?
Set Activity to Fullscreen Mode in Android - RRutors
How to find Android Device UDID or unique ID?
How to get complete address from latitude and longitude?
Extract Date and Time from Long Type Variable - RRutors
How to Use Deprecated Handler() in Android - RRutors Guide
How do i load image from drawable folder in Jetpack Compose?
How to reduce APK package size?
How to save activity State in Android?