Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Android

วิธีตรวจสอบการตรวจสอบที่อยู่อีเมลใน Android ในการแก้ไข Text


ตัวอย่างนี้สาธิตวิธีตรวจสอบการตรวจสอบความถูกต้องของที่อยู่อีเมลใน Android ในการแก้ไขข้อความ

ขั้นตอนที่ 1 − สร้างโครงการใหม่ใน Android Studio ไปที่ไฟล์ ⇒ โครงการใหม่และกรอกรายละเอียดที่จำเป็นทั้งหมดเพื่อสร้างโครงการใหม่

ขั้นตอนที่ 2 − เพิ่มรหัสต่อไปนี้ใน res/layout/activity_main.xml

<?xml version = "1.0" encoding = "utf-8"?>
<LinearLayout xmlns:android = "https://schemas.android.com/apk/res/android"
   android:id = "@+id/parent"
   xmlns:tools = "https://schemas.android.com/tools"
   android:layout_width = "match_parent"
   android:layout_height = "match_parent"
   tools:context = ".MainActivity"
   android:gravity = "center"
   android:orientation = "vertical">
   <EditText
      android:id = "@+id/emailId"
      android:hint = "Enter Email id"
      android:layout_margin = "20dp"
      android:layout_width = "match_parent"
      android:layout_height = "wrap_content" />
   <Button
      android:id = "@+id/text"
      android:textSize = "18sp"
      android:textAlignment = "center"
      android:layout_width = "wrap_content"
      android:textColor = "#000"
      android:text = "Check validation"
      android:layout_height = "wrap_content" />
</LinearLayout>

ในโค้ดด้านบนนี้ เราได้แก้ไขข้อความและปุ่มแล้ว เมื่อผู้ใช้คลิกที่ปุ่ม มันจะตรวจสอบแก้ไขข้อมูลข้อความและตรวจสอบข้อมูลนั้น

ขั้นตอนที่ 3 − เพิ่มรหัสต่อไปนี้ใน src/MainActivity.java

package com.example.andy.myapplication;
import android.content.res.Configuration;
import android.os.Build;
import android.os.Bundle;
import android.support.annotation.RequiresApi;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity {
   int view = R.layout.activity_main;
   Button button;
   EditText emailId;
   String emailPattern = "[a-zA-Z0-9._-]+@[a-z]+\\.+[a-z]+";
   @RequiresApi(api = Build.VERSION_CODES.JELLY_BEAN)
   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(view);
      button = findViewById(R.id.text);
      emailId = findViewById(R.id.emailId);
      button.setOnClickListener(new View.OnClickListener() {
         @Override
         public void onClick(View v) {
            if(emailId.getText().toString().isEmpty()) {
               Toast.makeText(getApplicationContext(),"enter email address",Toast.LENGTH_SHORT).show();
            }else {
               if (emailId.getText().toString().trim().matches(emailPattern)) {
                  Toast.makeText(getApplicationContext(),"valid email address",Toast.LENGTH_SHORT).show();
               } else {
                  Toast.makeText(getApplicationContext(),"Invalid email address", Toast.LENGTH_SHORT).show();
               }
            }
         }
      });
   }
}

ในโค้ดด้านบนนี้ เรากำลังตรวจสอบแก้ไขข้อมูลข้อความดังที่แสดงด้านล่าง -

String emailPattern = "[a-zA-Z0-9._-]+@[a-z]+\\.+[a-z]+";

....................................

if(emailId.getText().toString().isEmpty()) {
   Toast.makeText(getApplicationContext(),"enter email address",Toast.LENGTH_SHORT).show();
}else {
   if (emailId.getText().toString().trim().matches(emailPattern)) {
      Toast.makeText(getApplicationContext(),"valid email address",Toast.LENGTH_SHORT).show();
   } else {
      Toast.makeText(getApplicationContext(),"Invalid email address", Toast.LENGTH_SHORT).show();
   }
}

มาลองเรียกใช้แอปพลิเคชันของคุณกัน ฉันคิดว่าคุณได้เชื่อมต่ออุปกรณ์มือถือ Android จริงกับคอมพิวเตอร์ของคุณ ในการรันแอพจาก android studio ให้เปิดไฟล์กิจกรรมของโปรเจ็กต์แล้วคลิกไอคอน Run จากแถบเครื่องมือ เลือกอุปกรณ์มือถือของคุณเป็นตัวเลือก แล้วตรวจสอบอุปกรณ์มือถือของคุณซึ่งจะแสดงหน้าจอเริ่มต้นของคุณ -

วิธีตรวจสอบการตรวจสอบที่อยู่อีเมลใน Android ในการแก้ไข Text

ในผลลัพธ์ข้างต้น เราได้ป้อนรหัสอีเมลที่ถูกต้องและคลิกปุ่ม มันแสดงข้อความตรวจสอบความถูกต้องว่าเป็นที่อยู่อีเมลที่ถูกต้อง ตอนนี้ป้อน ID อีเมลผิดแล้วคลิกที่ปุ่ม มันจะแสดงข้อความดังภาพด้านล่าง -

วิธีตรวจสอบการตรวจสอบที่อยู่อีเมลใน Android ในการแก้ไข Text