How to override the left/right arrow button on pagination and implement the carousal functionality for ANDROID. I am working on a cross platform application.
1 Answer
To hide the arrows, set showPagingControl to false on your ScrollableView. Note this little bit in the API documentation for Ti.UI.ScrollableView:
The ScrollableView supports an on-screen paging control to indicate whether a previous or next page exists. When the paging control is enabled on iOS or Mobile Web, by default it appears as small dots on the bottom of the screen, whereas Android displays arrows on the left and right-hand sides.
See this post, where I present a navigation control that works for both android and iOS.
Your Answer
Think you can help? Login to answer this question!