onCreateのsavedInstanceStateの具体的な役割

4106 ワード

activityのライフサイクルでは、可視段階を離れたり、焦点を失ったりすれば、activityはプロセスによって終了する可能性が高い!、KILLに落とされた場合、その時の状態を保存できる仕組みが必要です.これがsavedInstancesStateの役割です.
ActivityがPAUSEにある場合、killの前にonSaveInstancesState()を呼び出して現在のactivityのステータス情報(pausedステータスの場合、KILLEDになる場合)を保存することができます.状態情報を保存するBundleは同時に2つのmethod、すなわちonRestoreInstancesState()and onCreate()に伝達される.
サンプルコードは次のとおりです.
    package com.myandroid.test;  
    import android.app.Activity;  
    import android.os.Bundle;  
    import android.util.Log;  
    public class AndroidTest extends Activity {  
         private static final String TAG = "MyNewLog";  
        /** Called when the activity is first created. */  
        @Override  
        public void onCreate(Bundle savedInstanceState) {  
            super.onCreate(savedInstanceState);  
            // If an instance of this activity had previously stopped, we can  
            // get the original text it started with.  
            if(null != savedInstanceState)  
            {  
                int IntTest = savedInstanceState.getInt("IntTest");  
                String StrTest = savedInstanceState.getString("StrTest");  
                Log.e(TAG, "onCreate get the savedInstanceState+IntTest="+IntTest+"+StrTest="+StrTest);          
            }  
            setContentView(R.layout.main);  
            Log.e(TAG, "onCreate");  
        }  

        @Override  
        public void onSaveInstanceState(Bundle savedInstanceState) {  
            // Save away the original text, so we still have it if the activity  
            // needs to be killed while paused.  
          savedInstanceState.putInt("IntTest", 0);  
          savedInstanceState.putString("StrTest", "savedInstanceState test");  
          super.onSaveInstanceState(savedInstanceState);  
          Log.e(TAG, "onSaveInstanceState");  
        }  

        @Override  
        public void onRestoreInstanceState(Bundle savedInstanceState) {  
          super.onRestoreInstanceState(savedInstanceState);  
          int IntTest = savedInstanceState.getInt("IntTest");  
          String StrTest = savedInstanceState.getString("StrTest");  
          Log.e(TAG, "onRestoreInstanceState+IntTest="+IntTest+"+StrTest="+StrTest);  
        }  
    }