我有一个android标签主机活动,我想删除标签之间的边框线
默认选项卡小部件如下所示:
TAB1 | TAB2 |标签|
但我希望它看起来像这样:
Tab1 Tab2 Tab3
如何在Android选项卡小部件上获得此类外观。我也尝试放tabStripEnable = "false"
但没有发生任何事情。
答案 0 :(得分:2)
tabHost.getTabWidget().setDividerDrawable(null);
or
tabHost.getTabWidget().setStripEnabled(true);
tabHost.getTabWidget().setRightStripDrawable(android.R.color.transparent);
tabHost.getTabWidget().setLeftStripDrawable(android.R.color.transparent);
或
tabHost.getTabWidget().setRightStripDrawable(pass blue colour);
tabHost.getTabWidget().setLeftStripDrawable(pass blue colour);