[android-beginners] Re: My first post -- ArrayAdapter question

2010-06-15 Thread Clover
Hi, You notice that the ArrayAdapter will have to populate a view for each row of a list view, thus you must provide it a layout for the row, you can either specify a layout of your own (R.layout.row) or just use the framework's built in layout (android.R.layout...). You can find an example in the

[android-beginners] Re: My first post -- ArrayAdapter question

2010-06-12 Thread appsgrrl
Hi -- thanks for the response. I don't have any TextView in my layout, which is why I was confused. I was trying to get this to appear as the list for stuff for my spinner, and I ended up using android.R.layout.simple_spinner_dropdown_item for the resourceID and that worked, so now I'm trying to