我正在使用Android 3.0。
我在布局中使用TabHost
创建了TabWidget
,并在运行时添加了选项卡。
我想摆脱TabWidget
下的蓝线,该蓝线也显示在活动选项卡上。我试图将功能区设置为禁用,但这没有帮助。
我该怎么做?
谢谢
最佳答案
如果上述所有方法均无效,请尝试:
tabHost.getTabWidget().getChildAt(0).setBackground(null);
tabHost.getTabWidget().getChildAt(1).setBackground(null);
...
它对我有用。
关于android - 摆脱TabWidget下的带状线,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7065017/