【android-tips】Activity間データ転送のBundeleとSharedPreferences


(転載は出典を明記してください.http://blog.csdn.net/buptgshengod) 
1.紹介
   
初心者のandroidの異なるactivity間のデータ転送はずっと難しい問題であり、主な解決方法は主にBundleでデータを伝送することであり、一つはSharedPreferencesである.両者の違いは、一般的にはShardPreferencesが軽いデータを保存するために使用され、xmlに保存され、長く保存されます.逆にBundeleは多くの中のデータを伝送することができますが、長くは続かないです.
2.具体的な実現方法
  Bundle
   
送信先クラスAで
 Bundle bundle = new Bundle();

  //       
    bundle.putString("string ", "   string");
    Intent intent=new Intent(A.this,B.class);
   intent.putExtras(bundle);
   受信者クラスB
Bundle b=getIntent().getExtras();
  //  Bundle   
  String info=b.getString("string ");
注意:stringの名前は同じです.
 SharedPreferences 
  SharedPreferencesの使い方は簡単です.SharedPreferencesの内容を編集するにはeditorオブジェクトが必要です.
 送信側Aにおいて
SharedPreferences sp = PreferenceManager.getDefaultSharedPreferences(getContext());	
					    Editor editor = sp.edit();
					    editor.putString("string   ","   string  ");
					    editor.commit();
受信者B
SharedPreferences sp = PreferenceManager.getDefaultSharedPreferences(B.this);
			string grade = sp.getString("string   ",“   ”);