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.
我正在制作一个基于标签的应用程序。当用户单击弹出的设置按钮时,我必须转到设置选项卡。以下代码用于此目的,它在 ICS 中完美运行,但不适用于姜饼。
mTabHost.getTabWidget().getChildAt(4).performClick();
有什么解决方法吗?
尝试这个:
mTabhost.setCurrentTab(4);