Java使用ArrayList填充ListView?
我的Android应用程序需要使用中填充ListView数据ArrayList。
我这样做很麻烦。有人可以帮我提供代码吗?
回答:
你需要通过进行操作ArrayAdapter
,以使ArrayList(或任何其他集合)适应布局中的项目(ListView,Spinner等)。
这是Android开发人员指南所说的:
一个ListAdapter
管理ListView
任意对象数组支持的。默认情况下,此类期望提供的资源ID引用单个TextView
。如果要使用更复杂的布局,请使用也带有字段ID的构造函数。该字段ID应该TextView
在较大的布局资源中引用a 。
然而,TextView
被引用,将填充有toString()
阵列中的每个对象的。你可以添加自定义对象的列表或数组。重写toString()
对象的方法,以确定将为列表中的项目显示什么文本。
要使用TextViews
数组显示以外的其他功能(例如)ImageViews
,或者要在toString()
结果中填充一些数据,请覆盖getView(int, View, ViewGroup)
以返回所需的视图类型。
因此,你的代码应如下所示:
public class YourActivity extends Activity { private ListView lv;
public void onCreate(Bundle saveInstanceState) {
setContentView(R.layout.your_layout);
lv = (ListView) findViewById(R.id.your_list_view_id);
// Instanciating an array list (you don't need to do this,
// you already have yours).
List<String> your_array_list = new ArrayList<String>();
your_array_list.add("foo");
your_array_list.add("bar");
// This is the array adapter, it takes the context of the activity as a
// first parameter, the type of list view as a second parameter and your
// array as a third parameter.
ArrayAdapter<String> arrayAdapter = new ArrayAdapter<String>(
this,
android.R.layout.simple_list_item_1,
your_array_list );
lv.setAdapter(arrayAdapter);
}
}
以上是 Java使用ArrayList填充ListView? 的全部内容, 来源链接: utcz.com/qa/424482.html