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 the Different Between val and var in Kotlin?
What is ANR? How to avoid and resolve it?
What is "shared preferences" in Android ?
FragmentPagerAdapter deprecated, Since API 27.1.0 FragmentPagerAdapter is deprecated.
How to convert DP to Pixel and Pixel to Dp?
Set Activity to Fullscreen Mode in Android - RRutors
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?
Fix Android Emulator Kill Error When Running Your App
How to Generate signed apk with android studio
How do I generate random numbers in Dart?
Open PDF in Google Drive with Intent in Android - RRutors
Invoke-customs are only supported starting with android 0 --min-api 26
How do i load image from drawable folder in Jetpack Compose?
What is ANR in android?
Fix Play Store Rejection Due to SMS Permission - RRutors
How to get a contact image using a phone number in android?
How to Get bitmap from drawable: Android
How to copy database from assets folder in android using kotlin
How to reduce APK package size?
INSTALL_FAILED_INVALID_APK: Split lib_slice_9_apk was defined multiple times. It is possible that th
Fix Error: Use JsonReader.setLenient(true) for Malformed JSON
Add Jar/Library Files as Dependency in Android Studio
How to convert milli seconds to hours, minutes and seconds in Android?
How to start a new activity on button click
FCM Not Receiving Notifications in Android - RRutors
Fix Duplicate Files in APK Build.gradle Issue - RRutors
What is the difference between match_parent and fill_parent?
Android Studio project R can't find
What is Application?
Permission denied for window type 2010 in Marshmallow device
Check List for Generate Signed APK Android
What happens next when the device switches between portrait and landscape?
How to Exit android app on back pressed?
What is Context?
ERR_ACCESS_DENIED in Android Webview with sdk 30
How can i comment inside xml file in android studio?
Explain Fragment Life Cycle
What are Android Versions available?
Hide/Disable soft keyboard on Activity launch: Android