我有一个android选项卡主机活动,我想删除选项卡之间的边界线
一个默认的选项卡小部件如下所示:
选项卡1|选项卡2|选项卡|
但我希望它看起来像这样:
表1表2表3
我如何才能在我的android选项卡小部件上获得这种外观。我也试着放tabStripEnable = "false"
,但什么也没发生。
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);