user2582308
user2582308

Reputation: 5

How to create custom Layout?

In my apps i want to display images and text in three ways

  1. ListView
  2. GridView
  3. 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

Answers (1)

David Jashi
David Jashi

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

Related Questions