Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用SlidngTabLayout ,当我的活动第一次加载时,我无法将第一个选项卡设置为活动状态。一旦我点击它,它就可以正常工作。但是,我需要在活动第一次开始时自动选择我的第一个选项卡
在 SlidingTabLayout.java 中,我以这种方式修改了 InternalViewPagerListener,
所以基本上,在内部onPageScrolled方法中,我这样做了。
onPageScrolled
if (position == 0) selectedTitle.setSelected(true); else mTabStrip.getChildAt(0).setSelected(false);
完毕!快乐编码:)