Reputation: 29
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
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