【android-tips】Activity间数据传递之Bundle和SharedPreferences

(转载请注明出处:http://blog.csdn.net/buptgshengod 

1.介绍

   对于初学者android不同activity间的数据传输一直是一个难题,主要的解决方法主要有两种一种是用Bundle传输数据,一种是用SharedPreferences。两者的区别,一般来讲SharedPreferences用来存储轻型数据,保存在xml里,可以持久保存。反观Bundle可以传输很多中数据,但是不持久。

2.具体实现方法

  Bundle

   在发送方class A
 Bundle bundle = new Bundle();

  //保存输入的信息
    bundle.putString("string名", "传输的string");
    Intent intent=new Intent(A.this,B.class);
   intent.putExtras(bundle);
   在接收方class 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变量名",“默认值”);



上一篇:在C#中主线程和子线程如何实现互相传递数据


下一篇:jquery清空表单数据