Reputation: 716
i am new to Android. I need to create a layout having list views along with textview and image icons. Please refer the attached screenshot and give me suggestion that how can i achieve this?
Thanks!
Upvotes: 0
Views: 7029
Reputation: 448
To create a custom list view you need to follow some simple steps :
I won't give you the code in this post, instead I will give you a very detailed tutorial that for me is the most straightforward to create what you want to achieve : Create custom listview tutorial
Upvotes: 2
Reputation: 23344
An excellent tutorial to do just like that -
Implement the customListView
using BaseAdapter
.
In CustomListView
show the ImageView
with TextView
for each list item.
Check ==> custom-listview-with-imageview-and-textview-in-android.
The display -
Upvotes: 0