-1

我们如何在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);
}
4

1 回答 1

2
myArrayListOfStrings.get(0);

这将为您提供数组列表中 0 处的对象值myArrayListOfStrings

于 2013-07-10T18:36:12.913 回答