Android:如何删除选定的选项卡突出显示颜色和按TabWidget上的突出显示



我现在正在使用Android TabWidget。我基于 http://mobileorchard.com/android-app-development-tabbed-activities/
构建了这个TabWidget我已经为TabWidget添加了背景,
但显然所选选项卡和按下选项卡的突出显示始终可见,我还无法将其关闭。

这是图片(抱歉不能直接添加图像,因为仍然是新手)。
1.默认选择选项卡:http://postimage.org/image/9ryed6w5b/
2.按下标签:http://postimage.org/image/gwg7m83en/

我想要的是默认选择的选项卡颜色,并且在按下选项卡上的颜色不可见或关闭,因此图像背景将完全显示,而不会被这些颜色阻挡。

任何回应将不胜感激。谢谢:)

代码:

public void onCreate(Bundle savedInstanceState) {
        //hide title bar
        BasicDisplaySettings.toggleTaskBar(EpolicyMainActivity.this, false);
        //show status bar
        BasicDisplaySettings.toggleStatusBar(EpolicyMainActivity.this, true);
        super.onCreate(savedInstanceState);
        setContentView(R.layout.epolicy);
        TabHost tabHost=(TabHost)findViewById(R.id.tabHost);
        tabHost.setup();
        tabHost.getTabWidget().setBackgroundColor(0);
        tabHost.getTabWidget().setBackgroundResource(R.drawable.epolicy_menu_bar);      
        TabSpec spec1=tabHost.newTabSpec("Tab 1");
        spec1.setContent(R.id.tab1);
        spec1.setIndicator("",getResources().getDrawable(R.drawable.epolicy_menu_home));
        TabSpec spec2=tabHost.newTabSpec("Tab 2");
        spec2.setContent(R.id.tab2);
        spec2.setIndicator("",getResources().getDrawable(R.drawable.epolicy_menu_nab));
        TabSpec spec3=tabHost.newTabSpec("Tab 3");
        spec3.setContent(R.id.tab3);
        spec3.setIndicator("",getResources().getDrawable(R.drawable.epolicy_menu_contact));
        TabSpec spec4=tabHost.newTabSpec("Tab 4");
        spec4.setContent(R.id.tab4);
        spec4.setIndicator("",getResources().getDrawable(R.drawable.epolicy_menu_agen));

tabHost.addTab(spec1);
tabHost.addTab(spec2);
tabHost.addTab(spec3);
tabHost.addTab(spec4);

我添加这个并最终工作:

tabHost.getTabWidget().getChildTabViewAt(0).setBackgroundDrawable(null);
tabHost.getTabWidget().getChildTabViewAt(1).setBackgroundDrawable(null);
tabHost.getTabWidget().getChildTabViewAt(2).setBackgroundDrawable(null);
tabHost.getTabWidget().getChildTabViewAt(3).setBackgroundDrawable(null);
tabHost.setCurrentTab(0);

如果使用 TabLayout 对象,则可以按如下方式隐藏指示器:

tabLayout.setSelectedTabIndicatorColor(getResources().getColor(R.color.transparent, null));

干杯。

相关内容

  • 没有找到相关文章

最新更新