Computer >> Máy Tính >  >> Lập trình >> Android

Làm cách nào để ngăn quay lại hoạt động trước đó trong Android?

Có rất nhiều tình huống mà chúng ta không nên gọi lại hành động khi người dùng nhấp vào nút quay lại.

Ví dụ này trình bày cách tích hợp biểu mẫu Đăng nhập và đăng ký Android.

Bước 1 - Tạo một dự án mới trong Android Studio, đi tới Tệp ⇒ Dự án Mới và điền tất cả các chi tiết cần thiết để tạo một dự án mới.

Bước 2 - Thêm mã sau vào res / layout / actvity_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>

Bước 3 - Thêm mã sau vào 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;
   }
}

Ở trên, chúng ta đã sử dụng onBackPressed (), khi người dùng nhấp vào nút quay lại, nó sẽ trả về trống như hình dưới đây -

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

Bước 4 - Thêm mã sau vào tệp kê khai.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>

Ở phần trên, chúng tôi đã tuyên bố không có giá trị Lịch sử nào là đúng có nghĩa là Hoạt động chính không duy trì bất kỳ thông tin hoạt động nào trước đó trong trình quản lý hoạt động.

Hãy thử chạy ứng dụng của bạn. Tôi giả sử bạn đã kết nối thiết bị Di động Android thực tế với máy tính của mình. Để chạy ứng dụng từ android studio, hãy mở một trong các tệp hoạt động của dự án của bạn và nhấp vào biểu tượng Chạy từ thanh công cụ. Chọn thiết bị di động của bạn làm tùy chọn, sau đó kiểm tra thiết bị di động sẽ hiển thị màn hình mặc định của bạn -

Làm cách nào để ngăn quay lại hoạt động trước đó trong Android?

Trong kết quả trên, nó đã hiển thị màn hình mặc định. Khi bạn nhấp vào nút quay lại, nó sẽ không làm gì như được hiển thị bên dưới -

Làm cách nào để ngăn quay lại hoạt động trước đó trong Android?