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.
我有一个项目,它有 4 个使用操作栏的选项卡,每个选项卡都有自己的片段,它们在单击选项卡时显示。
当在当前选项卡中单击按钮时,我想做的是将当前选项卡重置为另一个(例如从 tab4 到 tab2)。我不知道该怎么做,因为片段对我来说有点陌生。我如何才能获得当前选择的选项卡?我将如何设置新标签?
任何帮助深表感谢!
我认为您的意思是 myTab.setCurrentTab(i) 和 myTab.getCurrentTab()。你可以声明一个
myTab.setOnTabChangedListener(new OnTabChangeListener(){ @Override public void onTabChanged(String tabId) { //do something }});
用于您的事件处理。