Replies: 0 comments 5 replies
-
There's nothing easily available for this yet. But you should be able to override the background color by calling
We plan to add this to the user settings but for now this is not possible without modifying the toolkit.
We have the notion of "position" which is equivalent to page numbers, but they don't match the exact screen pages because this is not easy to do in a reflowable reader. You can get the total number of positions with: publication.positions().size And the current position is available when observing the current locator: navigator.currentLocator.asLiveData().observe(activity, Observer { locator ->
val currentPosition = locator?.locations?.position ?: 0
}) |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In android R2 kotlin sample app,
Many Thanks,
Beta Was this translation helpful? Give feedback.
All reactions