im quite new to android, so i apologise if this is a noob-ish question (:
i designed my list following the example found here: http://android-er.blogspot.com/2010/06/cus
Add to it a ListView
somedrawable_xml.xml
could be any drawable example:
Add a layout xmlFile myLayout.xml
example: (I added imageView for demonstration) anyway what is important is the id of the textview
finally in your Activity
ArrayAdapter myAD=new ArrayAdapter(mContext,R.layout.myLayout,R.id.thisIsTheTextView,new String[] {"item1", "item2", "item3", "item4", "item5"});
myListView.setAdapter(myAD);