sandalone
sandalone

Reputation: 41749

Name of this iOS UI element and its Android alternative?

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

Answers (1)

Michael Dautermann
Michael Dautermann

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

Related Questions