Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iPhone-like navigation dots for Android

I have to create an image gallery that navigation dots like the iPhone gallery.

Check out the screenshot. I need such a widget, look at the white dots:

iPhone-like image gallery in Android with navigation dots

Is there any widget available in Android that includes navigation dots? If not, how can I recreate this effect?

like image 755
Venky Avatar asked May 16 '11 08:05

Venky


People also ask

Can you get iOS interface on Android?

Launcher iOS 16 This is the easiest way to give your Android phone an iPhone interface. With the Launcher iOS 16, you can mimic Apple's flagship phone on any Android smartphone. The launcher will not only put the new iOS skin on top of Android but make it look and function like an iPhone.


4 Answers

After Long days i found View Pager Navigation Dots from Github source

enter image description here

enter image description here

like image 63
Venky Avatar answered Nov 15 '22 16:11

Venky


On my Arcos Tablet there is something like this used for the homescreen navigation - I am afraid it might be a custom widget though so you might have to write it yourself ...

If you know the name of the iPhone widget which does what you want (IF there is a particular name for it) - then google that in the following fashion: widgetName+for android - or something like this - I guess you're getting the idea :).

like image 32
Ready4Android Avatar answered Nov 15 '22 17:11

Ready4Android


This link could be usefull : Android Scroll Pagination

Check out for : UipageControl (within UiScrollView). That's the name of the IPhone Class.

like image 21
Alexandre Nucera Avatar answered Nov 15 '22 16:11

Alexandre Nucera


You can do that really easily using the GreenDroid library. Example: https://github.com/cyrilmottier/GreenDroid/blob/master/GDCatalog/src/com/cyrilmottier/android/gdcatalog/PagedViewActivity.java

Cheers

like image 41
Mokkun Avatar answered Nov 15 '22 18:11

Mokkun