Listing Images and Text in Android list view

后端 未结 3 863
离开以前
离开以前 2021-01-17 01:55

In my RSS News Reader app,I am currently listing RSS titles in a List view using the following method.I have stored RSS data in array using this method, http://droidapp.co.u

3条回答
  •  灰色年华
    2021-01-17 02:34

    First you have to make a custom ListView adapter by extending a BaseAdapter and secondly you want to get images in Bitmaps.

    here : http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/view/List14.html you have an optimized ListAdapter

    and here: Dynamically populate Android ImageView with outside resources you have a clue of how you can download an image and put it into a Bitmap (after that you can put it on to your ImageView)

提交回复
热议问题