我们如何在android中使用arraylist实现get(Position)?一个例子将非常有帮助。谢谢
id | artist | image
1 bob image.jpg
2 tom image2.jpg
我将这些信息从 sqlite 存储到 arraylist。我想在android中实现这样的东西并一一获取记录。
private void Data(int position){
/*
* Get the data from the list of the new position
*/
String text = myThings.get(position).text;
String image = myThings.get(position).imageURL;
myTextView.setText(text);
myImageView.loadImage(image);
}