1

Can't find how to implement such control and don't know even it's name:

enter image description here

Every 1, 2 and 3 elements are the same custom controls (let name them items). Items should be slideable in both directions by finger and (will be great) also by tapping according dots below control. It is important to see the whole single item at the screen (not part of 1st and part of 2nd like with ListView).

Is it implementable on Android? If so, please, show how to do this and tell me the name of this control.

Daniele
  • 1,005
  • 9
  • 26
Sergey Metlov
  • 25,747
  • 28
  • 93
  • 153

4 Answers4

5

Here is a sample with the same that follows your requirement

Android - ViewPagerIndicator Demo

dplante
  • 2,445
  • 3
  • 21
  • 27
Parag Chauhan
  • 35,760
  • 13
  • 86
  • 95
1

Try: ImageSwitcher,ViewFlipper,ViewSwitcher.

goodm
  • 7,275
  • 6
  • 31
  • 55
0

ViewPager sounds like what you want: http://android-developers.blogspot.com/2011/08/horizontal-view-swiping-with-viewpager.html

(You'll have to implement the clickable dots yourself, but it should be easy enough, using the ViewPagers setCurrentItem() method)

Jave
  • 31,598
  • 14
  • 77
  • 90
0

use example as given on

http://evgeni-shafran.blogspot.in/2011/08/tutorial-custom-gallery-circular-and.html

Khan
  • 7,585
  • 3
  • 27
  • 44