views:

22

answers:

1

How do I get a list of all images in my android device?

update: Maybe there is a Content Provicer for all the images on the device.. (studying)

update: Getting hot, MediaStore.Images have the information.. now looking for how to get it..

+1  A: 

hi tom you are on the right ! this is an example implementing Asynctask =)

Displaying Images from SD Card

Jorgesys
Need remove line 157, and than it works really nice!
Tom Brito
I'm trying to put it on my code now.. I back here soon..
Tom Brito
hi Tom whats on the line 157?
Jorgesys
setProgressBarIndeterminateVisibility(true), nothing special..
Tom Brito
As last thing, I'm just trying to understand why he execute the load as an AsyncTask. I put the code on a simples method and it works fine..
Tom Brito
Ok, understood reading the AsyncTask doc.. :)
Tom Brito
using Asynctask is a good practice, you will have long background operations while publish your results on the UI, cool!.
Jorgesys