簡體   English   中英

在Android中按下后退按鈕銷毀數據

[英]Destroy data on pressing back button in android

我的活動文件很少,幾乎包含如下所示的代碼。 好吧,我沒有在所有活動文件中都包含onDestroy和finish()方法,在繼續前進之前,我想確定下面發布的代碼。

public class Three extends AppCompatActivity {
    Button forwardB,backwardB,homeB;
    TextView textView2,textView4,textView5;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.one);
        //Place advertisement here
        AdView adView = (AdView) findViewById(R.id.adView);
        AdRequest adRequest = new AdRequest.Builder()
            .build();
        adView.loadAd(adRequest);
        //
        //find widget by Id
        forwardB = (Button) findViewById(R.id.forwardB);
        backwardB = (Button) findViewById(R.id.backwardB);
        homeB = (Button) findViewById(R.id.homeB);
        textView2= (TextView) findViewById(R.id.textView2);
        textView4 = (TextView) findViewById(R.id.textView4);
        textView5 = (TextView) findViewById(R.id.textView5);
        textView5.setText("3/50");
        //set text inside textView3 and textView4
        textView2.setText("Apfel");textView4.setText("apple");
        //set on click listener for forward,backward and home button
        forwardB.setOnClickListener(new View.OnClickListener() {
            public void onClick(View v) {
                Intent i = new Intent(getApplicationContext(), Two.class);
                i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
                startActivity(i);
                finish();
            }
        });
        homeB.setOnClickListener(new View.OnClickListener() {
            public void onClick(View v) {
                Intent i = new Intent(getApplicationContext(), MainActivity.class);
                i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
                startActivity(i);
                finish();
            }
        });
        backwardB.setOnClickListener(new View.OnClickListener() {
            public void onClick(View v) {
                Intent i = new Intent(getApplicationContext(), Four.class);
                i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
                startActivity(i);
                finish();
            }
        });
    }
    @Override
    protected void onDestroy() {
        super.onDestroy();
    }
}

運行該應用程序后,我發現數據存在嚴重問題,似乎android將數據保留在后台。 我如何避免這種情況? 在此處輸入圖片說明

每次我運行應用程序並檢查數據時,它似乎都在增加。

好吧,這是我的MainActivity.java:

public class MainActivity extends Activity {
    Button btnflashcards;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        setContentView(R.layout.activity_main);

        //create widget ids that are usable forw rest of the code
        btnflashcards = (Button) findViewById(R.id.btnflashcards);
    }
    //on flash card button click
    public void findFlashCards(View v){
        Intent i = new Intent(this, FlashCardSelection.class);
        startActivity(i);
    }
    @Override
    public void onBackPressed() {
        Intent intent = new Intent(Intent.ACTION_MAIN);
        intent.addCategory(Intent.CATEGORY_HOME);
        intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        startActivity(intent);
    }

    @Override
    protected void onDestroy() {
        super.onDestroy();
    }
}

每次退出應用程序時或在使用應用程序期間的任何時間點,您都需要明確清除應用程序的用戶數據。

使用此方法: ActivityManager的clearApplicationUserData()方法

根據文檔,這將:

允許應用程序從磁盤擦除其自身的數據。 這等效於用戶選擇從設備設置UI中清除應用程序的數據。 它會刪除與該應用程序關聯的所有動態數據-私有數據和外部存儲中私有區域中的數據-但不會刪除已安裝的應用程序本身,也不會刪除任何OBB文件。

試一下這樣的東西

import java.io.File;

import android.app.Activity;
import android.content.Context;
import android.os.Bundle;

public class HelloWorld extends Activity {

   /** Called when the activity is first created. */
   @Override
   public void onCreate(Bundle *) {
      super.onCreate(*);
      setContentView(R.layout.main);
   }

   @Override
   protected void onStop(){
      super.onStop();
   }

   //Fires after the OnStop() state
   @Override
   protected void onDestroy() {
      super.onDestroy();
      try {
         trimCache(this);
      } catch (Exception e) {
         // TODO Auto-generated catch block
         e.printStackTrace();
      }
   }

   public static void trimCache(Context context) {
      try {
         File dir = context.getCacheDir();
         if (dir != null && dir.isDirectory()) {
            deleteDir(dir);
         }
      } catch (Exception e) {
         // TODO: handle exception
      }
   }

   public static boolean deleteDir(File dir) {
      if (dir != null && dir.isDirectory()) {
         String[] children = dir.list();
         for (int i = 0; i < children.length; i++) {
            boolean success = deleteDir(new File(dir, children[i]));
            if (!success) {
               return false;
            }
         }
      }

      // The directory is now empty so delete it
      return dir.delete();
   }

}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM