How to go other Tabs by clicking on a Button from the current Tab in Android?

后端 未结 3 1123
生来不讨喜
生来不讨喜 2021-02-15 17:40

I trying to write a code in Android, to switch from one tab to another tab by click on a button.

I know to by clicking on tab we can switch from one tab to another but c

3条回答
  •  悲哀的现实
    2021-02-15 18:16

       viewPager = (ViewPager) getActivity().findViewById(R.id.pager);
         viewPager.setCurrentItem(0);
    

    inside your fragment

提交回复
热议问题