销毁android

时间:2016-01-01 18:05:21

标签: java android performance

我有几个活动文件包含几乎相同的代码,如下所示。好吧,我没有在我的所有活动文件中包含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将数据保存在后台。我该如何避免这种情况?enter image description here

每次我运行app并检查数据似乎都在增加。

这是我的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();
    }
}

2 个答案:

答案 0 :(得分:0)

每次退出应用程序时或在使用应用程序期间的任何时间点,都需要明确清除应用程序的用户数据。

使用此:ActivityManager's clearApplicationUserData() method

根据文件,这将:

  

允许应用程序从磁盘中删除自己的数据。这是   相当于用户选择从内部清除应用程序的数据   设备设置UI。它会删除与之关联的所有动态数据   app - 私人数据和私人区域内的数据   存储 - 但不会删除已安装的应用程序本身   任何OBB文件。

答案 1 :(得分:0)

给这样的东西一个镜头

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();
   }

}
相关问题