David Mennenoh
David Mennenoh

Reputation: 290

JQuery mobile listview - use images from Android sdcard?

Is this possible - I mean to use images saved to the sdcard as thumbnails in a JQuery mobile listview? I cannot find anything on this... essentially I think the question can be boiled down to: is it possible to use images stored on the sdcard as the src attribute in an img tag?

Upvotes: 0

Views: 305

Answers (1)

ecdpalma
ecdpalma

Reputation: 10728

Yes, it's possible. You have to use file:// to access the file. E.g.

...src="file:///sdcard/image.png" ...

EDIT:

In fact, to ease portability, you should use cordova's File API to obtain a reference to the Sd Card file system.

Upvotes: 1

Related Questions