How to create User interface like the attached photo

前端 未结 7 842
既然无缘
既然无缘 2021-02-04 14:17

Can any one tell me what is this photo effect called. And I would like to know how to create an adapter for this attached image effect.

@Edited: This is a sample photo o

7条回答
  •  温柔的废话
    2021-02-04 14:46

    I think the market app is done using a ViewPager and each page contains a RelativeLayout or LinearLayout. For making a metro like interface, a GridView for each page is more suitable.

        page 1             page 2         page 3
    ________________________________________________
    |              |                 |              | 
    |              |                 |              | 
    |    GridView  |     GridView    |   GridView   | 
    |              |                 |              | 
    |              |                 |              | 
    |              |                 |              | 
    |              |                 |              |
    |              |                 |              |
    -------------------------------------------------
    

    Here you will find some links to ViewPager tutorials

    Another one here

    Update:

    You can even use a OverScroller to give it an elastic effect while scrolling.

提交回复
热议问题