plancys
plancys

Reputation: 3923

Create UI for Application

I want to create Application which looks i this way: enter image description here

I will have lets say 6 Scroollable Lists (A,B,C,D,E,F). They should change by touch event. For example we see Scrollable List B, I touch screen and move to left and next I see Scrollable List C, I touch screen and move it to right and I see Scrollable List B).

The name do Scrollable List (NameOfScrollableList shoud be change with touch event for Scrollable List)

How to do it? (I am not asking for code. I want to know a proper aproach to this problem :) )

Upvotes: 0

Views: 78

Answers (2)

ajmal
ajmal

Reputation: 4252

Most probably you are looking for ViewPager This might help you

Upvotes: 1

slezadav
slezadav

Reputation: 6141

If i understand correctly you want to horizontally scroll between your lists. Have a look at ViewPager, which is ideal for horizontal scrolling. The put a ListView inside each page of ViewPager.

That's what I'd do.

Upvotes: 1

Related Questions