Zaid
Zaid

Reputation: 29

fragment change in Viewpager2 on Button Click

Can we change fragment in viewpager2 with button click not on tablayout ? Or there is way make tab layout as button with some corner radius and gap between them?

Upvotes: 2

Views: 1137

Answers (1)

Mohamed Rejeb
Mohamed Rejeb

Reputation: 2629

Yes you can do this by this function -> setCurrentItem which takes two parameters the first is the index of fragment that you want, the second is a boolean if you want to change fragment with smooth scroll set it to true:

binding.pager.setCurrentItem(1, false)

Upvotes: 1

Related Questions