I am new to android i am currently making an app which parse RSS feed and i want to also get the images of the RSs feed but did not know how can i show images in the list view along with the text.You help will be very helpful for me
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
To create a
ListViewwith custom views, you need to create a class that extendsBaseAdapter. You then need to override itsgetView()method to return your custom view, in this case a view that contains anImageViewalongside aTextView. Then set an instance of this class as the adapter for yourListView.This should help
Lazy load of images in ListView