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()
}
}
}
How do I check in SQLite whether a table exists?
Fix Play Store Rejection Due to SMS Permission - RRutors
How do I generate random numbers in Dart?
Add Jar/Library Files as Dependency in Android Studio
What is the Different Between val and var in Kotlin?
How to stop EditText focus at Activity startup in Android?
How to check Android version?
How to validate email address in Android with Kotlin?
How to start a new activity on button click
How to convert DP to Pixel and Pixel to Dp?
Hide/Disable soft keyboard on Activity launch: Android
INSTALL_FAILED_INVALID_APK: Split lib_slice_9_apk was defined multiple times. It is possible that th
How to avoid multiple button click at same time in android?
How to Generate signed apk with android studio
What happens next when the device switches between portrait and landscape?
What is Application?
Permission denied for window type 2010 in Marshmallow device
How to Exit android app on back pressed?
What is ANR? How to avoid and resolve it?
FragmentPagerAdapter deprecated, Since API 27.1.0 FragmentPagerAdapter is deprecated.
Fix Duplicate Files in APK Build.gradle Issue - RRutors
Symmetric vs Asymmetric Encryption in Android Server - RRutors
ERR_ACCESS_DENIED in Android Webview with sdk 30
Fix Android Emulator Kill Error When Running Your App
What is the difference between match_parent and fill_parent?
How to Use Deprecated Handler() in Android - RRutors Guide
How to get complete address from latitude and longitude?
What is Context?
What is ANR in android?
FCM Not Receiving Notifications in Android - RRutors
How to save activity State in Android?
How do i load image from drawable folder in Jetpack Compose?
What is Android?
Extract Date and Time from Long Type Variable - RRutors
How to get a contact image using a phone number in android?
How to install/ uninstall apk by command line ADB
How can i comment inside xml file in android studio?
What are Android Versions available?
Emulator: emulator: ERROR: Can't find 'Linux version ' string in kernel image file: Andr
Set Activity to Fullscreen Mode in Android - RRutors