I'm going to develop an application which shows a ListView
which each row have a seperate image (like personal picture for contacts list). It seems I have two options:
1- Store all images in Asset Folder and load image using setImageDrawable() command.
2- Store all images in Drawable Folder and load theme using setImageResource(R.drawable.xxx
)
So my questions is does they differ in performance? And how can I speed up listView rendering such that images displayed in acceptable speed.