onCreateのsavedInstanceStateはどのような具体的な役割を果たしていますか?具体例は?

7713 ワード

activityのライフサイクルでは、可視段階を離れたり、焦点を失ったりすれば、activityはプロセスによって終了する可能性が高い!、KILLに落とされた場合、その時の状態を保存できる仕組みが必要です.これがsavedInstancesStateの役割です.
ActivityがPAUSEにある場合、killの前にonSaveInstancesState()を呼び出して現在のactivityのステータス情報(pausedステータスの場合、KILLEDになる場合)を保存することができます.状態情報を保存するBundleは同時に2つのmethod、すなわちonRestoreInstancesState()and onCreate()に伝達される.
サンプルコードは次のとおりです.
 1 package com.myandroid.test;
 2 
 3 import android.app.Activity;
 4 
 5 import android.os.Bundle;
 6 
 7 import android.util.Log;
 8 
 9 public class AndroidTest extends Activity {
10 
11      private static final String TAG = "MyNewLog";
12 
13     /** Called when the activity is first created. */
14 
15     @Override
16 
17     public void onCreate(Bundle savedInstanceState) {
18 
19         super.onCreate(savedInstanceState);
20 
21         // If an instance of this activity had previously stopped, we can
22 
23         // get the original text it started with.
24 
25         if(null != savedInstanceState)
26 
27         {
28 
29             int IntTest = savedInstanceState.getInt("IntTest");
30 
31             String StrTest = savedInstanceState.getString("StrTest");
32 
33             Log.e(TAG, "onCreate get the savedInstanceState+IntTest="+IntTest+"+StrTest="+StrTest);        
34 
35         }
36 
37         setContentView(R.layout.main);
38 
39         Log.e(TAG, "onCreate");
40 
41     }
42 
43    
44 
45     @Override
46 
47     public void onSaveInstanceState(Bundle savedInstanceState) {
48 
49         // Save away the original text, so we still have it if the activity
50 
51         // needs to be killed while paused.
52 
53       savedInstanceState.putInt("IntTest", 0);
54 
55       savedInstanceState.putString("StrTest", "savedInstanceState test");
56 
57       super.onSaveInstanceState(savedInstanceState);
58 
59       Log.e(TAG, "onSaveInstanceState");
60 
61     }
62 
63    
64 
65     @Override
66 
67     public void onRestoreInstanceState(Bundle savedInstanceState) {
68 
69       super.onRestoreInstanceState(savedInstanceState);
70 
71       int IntTest = savedInstanceState.getInt("IntTest");
72 
73       String StrTest = savedInstanceState.getString("StrTest");
74 
75       Log.e(TAG, "onRestoreInstanceState+IntTest="+IntTest+"+StrTest="+StrTest);
76 
77     }
78 
79 }

 
転載先:https://www.cnblogs.com/liu666bin/archive/2013/01/05/2845963.html