【发布时间】:2019-05-21 11:18:26
【问题描述】:
我想知道如何在第二个活动中制作列表视图
Person person = new Person(nome, idade, numero);
this.list.add(person);
int number= this.list.size();
this.numero.setText(String.valueOf(number));
this.item.setText("");
}
break;
case R.id.btn_activity2:
Intent intent = new Intent(MainActivity.this, ListActivity.class);
intent.put(...here is the problem)
startActivity(intent);
break;
【问题讨论】:
标签: java android object arraylist