如何在Android上将对象从一个活动传递到另一个活动?我需要能够在我的应用程序中的多个活动中使用一个对象,它需要是同对象。做这件事最好的方法是什么?我尝试过将对象设置为“公共静态”,这样它就可以被其他活动访问,但出于某种原因,这并没有切断它。还有别的办法吗
3 回答
MMTTMM
TA贡献1869条经验 获得超4个赞
可序列化
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);
慕侠2389804
TA贡献1719条经验 获得超6个赞
getApplication()
.
阿波罗的战车
TA贡献1862条经验 获得超6个赞
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
更新
Eventbus
奥托
添加回答
举报
0/150
提交
取消