Reputation: 42824
When we add an image(downloaded from server) to the listview where the listview stores the image I mean in which location listview stores
Upvotes: 3
Views: 210
Reputation: 436
It is stored in the Internal Storage. You can check it by clicking DDMS>File Explorer>data>data>App_package_name and there you go.
Sometimes it might not display when you click DDMS, then you just have to close and re-start the eclipse again. Hope this helps.
Upvotes: 3
Reputation: 1
They are in the application package cache memory.
i.e data/data/YourPackage/
Upvotes: 1
Reputation: 5593
ListView
doesn't stores anything itself - it's just a container you use to represent some data in form of list. All views you put in ListView
stores in device memory - including images.
Upvotes: 1
Reputation: 9121
You add you code that will identify where you store images. Generaly in Data/data/YourPackage/
Upvotes: 1