Reputation: 41749
This iOS element is often met in iOS apps.
Like a horizontal scrollview with dots representing which page is currently active.
What is its iOS name? I thought it was uiscrollview
, but viewing its images, I saw that they don't look the same.
The second part, what is its best Android alternative? I am looking for its port on Android.
Upvotes: 0
Views: 202
Reputation: 89509
The answer to the first part of your question is that the iOS control is known as a UIPageController.
As for the second part, here's some open source code that you might be able to incorporate into your Android project, which I found in this closely related (or possibly duplicate?) question.
Upvotes: 1