我有一个TabHost,有5个标签。 据我所见,必须始终选择一个标签。
我需要一种取消选中所有标签的方法,这样就不会选择任何标签。
如果tabhost一般用于指定一个选项卡, 如何使其显示(用户界面说话),就像没有选择标签一样?
答案 0 :(得分:4)
试试这个:
final TabWidget tabWidget = tabHost.getTabWidget();
final int n = tabWidget.getChildCount();
for (int i = 0; i < n; ++i) {
tabWidget.getChildAt(i).setSelected(false);
}
或者您可以添加隐藏的标签,并在您想要取消选择标签时选择它
tabHost.addTab(
tabHost.newTabSpec("hiddenTab").setIndicator(""),
MyFragment.class,
null
);
tabHost.getTabWidget().getChildTabViewAt(hiddenTabIndex).setVisibility(View.GONE);
并在需要时选择此标签
tabHost.setCurrentTab(hiddenTabIndex);
答案 1 :(得分:1)
这是不可能的AFAIK。但是,您可以将选定选项卡的颜色设置为未选中,并通过在“未选中”时管理全局变量并在希望将其正常显示给用户时设置正常布局,在其上设置空白布局。但这是一种伎俩。
希望,你明白我的意思了!
编辑:
假设您已在代码中的某处设置String what="disappear"
以显示“未选中”,那么您可以使用此功能更改选项卡的颜色:
<强> Main.class:强>
//Change The Backgournd Color of Tabs
public void setTabColor(TabHost tabhost) {
for(int i=0;i<tabhost.getTabWidget().getChildCount();i++)
{
tabhost.getTabWidget().getChildAt(i).setBackgroundColor(Color.parseColor("#FFFFFF"))); //unselected white colored
}
if(!what.equals("disappear"))
tabhost.getTabWidget().getChildAt(tabhost.getCurrentTab()).setBackgroundColor(Color.parseColor("FF0000"))); // selected red colored
else
tabhost.getTabWidget().getChildAt(tabhost.getCurrentTab()).setBackgroundColor(Color.parseColor("FFFFFF"))); // selected but show as unselected with white color
}
在您的活动类(由所选标签打开)中:
<强> FirstActivity.class:强>
if(what.equals("disappear"))
setContentView(R.layout.blank);
else
setContentView(R.layout.first_layout);
<强> blank.xml:强>
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:id="@+id/layout"
android:background="#ffffff"
android:gravity="center">
<!-- You can make background transperent by setting it to "00ffffff" -->
<!-- You can also add this textview to guide user -->
<!--
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Click Any Tab To Start
/>
-->
</LinearLayout>
答案 2 :(得分:0)
为此目的,也许使用tabHost不是正确的方法?