如何在Android上将对象从一个活动传递到另一个活动?我需要能够在我的应用程序中的多个活动中使用一个对象,它需要是同对象。做这件事最好的方法是什么?我尝试过将对象设置为“公共静态”,这样它就可以被其他活动访问,但出于某种原因,这并没有切断它。还有别的办法吗?
3 回答
大话西游666
TA贡献1817条经验 获得超14个赞
CustomListing currentListing = new CustomListing();Intent i = new Intent(); Bundle b = new Bundle();b.putParcelable(Constants.CUSTOM_LISTING, currentListing); i.putExtras(b);i.setClass(this, SearchDetailsActivity.class);startActivity(i);
Bundle b = this.getIntent().getExtras();if (b != null) mCurrentListing = b.getParcelable(Constants.CUSTOM_LISTING);
芜湖不芜
TA贡献1796条经验 获得超7个赞
class Myclass { int a; class SubClass { int b; }}
MyClass src = new MyClass();Gson gS = new Gson();String target = gS.toJson(src); // Converts the object to a JSON String
Intent i = new Intent(FromActivity.this, ToActivity.class);i.putExtra("MyObjectAsString", target);
String target = getIntent().getStringExtra("MyObjectAsString");MyClass src = gS.fromJson(target, MyClass.class); // Converts the JSON String to an Object
更新
- 3 回答
- 0 关注
- 430 浏览
添加回答
举报
0/150
提交
取消