我有一个类别列表,我想在我的项目中实现 History.Java。它具有与 Category List 相同的字段或参数。现在如何使用相同ListView
的历史。我正在接受一个全局boolean
函数。我认为它会起作用。但我想知道任何好的技术。请告诉我?我想为历史和类别列表调用相同的 Category.Java 类。
问问题
109 次
2 回答
1
您还可以在 Intent 中传递一维数组列表
Bundle intentbundle = new Bundle();
intentbundle.putStringArrayList("arrList",arrList);
intent.putExtras(intentbundle);
startActivity(intent);
并通过 nex 活动获取值
Bundle extras = getIntent().getExtras();
mArrList = extras.getStringArrayList("arrList");
于 2012-10-04T05:17:21.943 回答
0
创建 ListView 适配器。然后你将一些数据放入适配器,在 Listview 中设置,你的数据就会改变。在这里阅读:http ://www.vogella.com/articles/AndroidListView/article.html
于 2012-10-03T12:28:32.233 回答