L Vasquez wrote:I can only find examples of an ArrayAdapter being used for ListViews. Do you mind going into a little more detail for me or directing me to a more specific resource? Thanks for your help.
I have little to no experience with them outside of the examples in a book i read, but i am willing to learn it with you.
IIUC, there is essentially no difference between the two, as an ArrayAdapter has specific methods for add, edit, delete, and list. Perhaps you can write the Adapter as if it were for a ListView (using the examples), and once it is working, switch it to an ImageView. Though, the ListView has controls to switch automatically, the ImageView does not, so you will have to change the source and refresh the image manually. Hmm...perhaps that obviates the need for the ArrayAdapter.
Oh! You can use a custom ListView to use images. I remember trying that once. The custom part means that instead of the ListView just showing text, you can define the repeated fragment inside it, and that can contain an ImageView. Let's find some examples:
custom ListView ImageView
Does that make sense to you?