当我关闭我的应用程序时,我也想从android中的“最近的应用程序列表”中将其删除。
我创建了一个空项目和活动。
这里是我的主要XML文件:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.rebirthing.clear_recent_list_app.MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
android:onClick="closeApp"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>
这里是我的MainActivity.java文件:
`package com.example.rebirthing.clear_recent_list_app;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void closeApp(View v){
finish();
}
}
`
[当我单击Xml文件中的TextView时。它关闭了我的应用程序。但是当我选中“最近的应用列表”时,它仍然存在。我该如何解决?
如果您要在关闭应用程序时对应用程序执行某些操作。然后使用此方法
protected void onDestroy() {
super.onDestroy();
//do what you want to do here
}
关闭应用程序时将调用此方法。
如果您发现此答案有用,请标记为正确。