如何在Android中防止返回上一个活动?


在很多情况下,我们不希望用户点击返回按钮时调用回退操作。

此示例演示如何集成 Android 登录和注册表单。

步骤 1 − 在 Android Studio 中创建一个新项目,转到文件 ⇒ 新建项目,并填写所有必要的信息以创建一个新项目。

步骤 2 − 将以下代码添加到 res/layout/actvity_main.xml 中。

<?xml version = "1.0" encoding = "utf-8"?>
<LinearLayout xmlns:android = "http://schemas.android.com/apk/res/android"
   android:id = "@+id/parent"
   xmlns:tools = "http://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 = "http://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>

在上面,我们声明 noHistory 值为 true,这意味着 MainActivity 不会在活动管理器中维护任何先前活动的的信息。

让我们尝试运行您的应用程序。我假设您已将您的实际 Android 移动设备连接到您的电脑。要从 Android Studio 运行应用程序,请打开项目的其中一个活动文件,然后点击工具栏中的运行  图标。选择您的移动设备作为选项,然后检查您的移动设备,它将显示您的默认屏幕 -

在上述结果中,它显示了默认屏幕。当您点击返回按钮时,它将不执行任何操作,如下所示 -

点击 此处 下载项目代码

更新于: 2019-07-30

1K+ 次浏览

开启您的 职业生涯

通过完成课程获得认证

开始学习
广告