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

จะป้องกันการกลับไปทำกิจกรรมก่อนหน้าใน Android ได้อย่างไร?


มีหลายสถานการณ์ที่เราไม่ควรโทรกลับเมื่อผู้ใช้คลิกปุ่มย้อนกลับ

ตัวอย่างนี้สาธิตวิธีผสานรวมการเข้าสู่ระบบ 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/enterNumber"
      android:layout_width = "match_parent"
      android:hint = "Enter phone number"
      android:layout_height = "wrap_content" />
   <TextView
      android:id = "@+id/text"
      android:textSize = "18sp"
      android:textAlignment = "center"
      android:text = "click"
      android:layout_width = "match_parent"
      android:layout_height = "wrap_content" />
</LinearLayout>

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

package com.example.andy.myapplication;
import android.os.Build;
import android.os.Bundle;
import android.support.annotation.RequiresApi;
import android.support.v7.app.AppCompatActivity;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity {
   int view = R.layout.activity_main;
   @RequiresApi(api = Build.VERSION_CODES.JELLY_BEAN)
   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(view);
   }
   @Override
   public void onBackPressed() {
      // super.onBackPressed();
      Toast.makeText(MainActivity.this,"There is no back action",Toast.LENGTH_LONG).show();
      return;
   }
}

ด้านบนนี้เราได้ดำเนินการ onBackPressed() เมื่อผู้ใช้คลิกที่ปุ่มย้อนกลับก็จะกลับว่างเปล่าดังที่แสดงด้านล่าง -

@Override
public void onBackPressed() {
   // super.onBackPressed();
   Toast.makeText(MainActivity.this,"There is no back action",Toast.LENGTH_LONG).show();
   return;
}

ขั้นตอนที่ 4 − เพิ่มรหัสต่อไปนี้ใน manifest.java

<?xml version = "1.0" encoding = "utf-8"?>
<manifest xmlns:android = "https://schemas.android.com/apk/res/android"
   package = "com.example.andy.myapplication">
   <uses-permission android:name = "android.permission.VIBRATE" />
   <application
      android:allowBackup = "true"
      android:icon = "@mipmap/ic_launcher"
      android:label = "@string/app_name"
      android:roundIcon = "@mipmap/ic_launcher_round"
      android:supportsRtl = "true"
      android:theme = "@style/AppTheme">
      <activity
         android:name = ".MainActivity"
         android:noHistory = "true"
         android:screenOrientation = "portrait">
         <intent-filter>
            <action android:name = "android.intent.action.MAIN" />
            <category android:name = "android.intent.category.LAUNCHER" />
         </intent-filter>
      </activity>
   </application>
</manifest>

ในข้างต้น เราได้ประกาศว่าไม่มีค่าประวัติใดเป็นจริง หมายความว่ากิจกรรมหลักไม่ได้รักษาข้อมูลกิจกรรมก่อนหน้าในตัวจัดการกิจกรรม

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

จะป้องกันการกลับไปทำกิจกรรมก่อนหน้าใน Android ได้อย่างไร?

ในผลลัพธ์ข้างต้น จะแสดงหน้าจอเริ่มต้น เมื่อคุณคลิกที่ปุ่มย้อนกลับจะไม่ทำอะไรดังที่แสดงด้านล่าง -

จะป้องกันการกลับไปทำกิจกรรมก่อนหน้าใน Android ได้อย่างไร?