Activity之間傳遞List對象

發送:
  Intent it = new Intent(OneActivity.this, TwoMaxActivity.class);
  it.putExtra("f", (Serializable) list);
  OneActivity.this.startActivity(it);

         接受:
        Intent it = getIntent();
list = (List<Furniture>) it.getSerializableExtra("f"); this

其中List<Furniture>爲你的list類型 spa

相關文章
相關標籤/搜索