Reputation: 5
In my apps i want to display images and text in three ways
ListView
GridView
FullScreen
i have 500+ images and text that i parse using JSON
and store into SQLite
.
I know how to create ListView
& GridView
but problem is I don't know how to create the custom layout.
I have image but due to my low reputation i am not able to post image.
I try to explain what i need.
I need custom fullscreen layout that has 2 buttons, one on the left and other on the right and between those 2 buttons I need Imageview
that display the fullscreen image.
thanks in advance
Upvotes: 0
Views: 76
Reputation: 4511
Use UniversalImageLoader library, as it has all the modes you need. It also supports caching and lazy load, which you will definitely need on 500 images.
Upvotes: 2