如何动态更改android标签文本?

时间:2010-09-08 12:41:30

标签: android tabs android-widget

这看起来应该很简单,但我无法想出办法。我需要一个选项卡来开始文本,但是在用户从列表中选择一个项目后,该文本会发生变化。我知道如何通过

更改标签背景和颜色
mTabHost.getChildAt(index).setBackgroundColor();

但是没有更改标签指示符的选项。我尝试过使用EditText。

private EditText tabName;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.statistics);

    comm = new Communicator();

    tabName = new EditText(this);
    tabName.setText("BeginningText");

    mTabHost = getTabHost();
    mTabHost.addTab(mTabHost
                   .newTabSpec("tab_1_stat")
                   .setIndicator(User)
                   .setContent(R.id.meStatsTab));
    mTabHost.addTab(mTabHost
                   .newTabSpec("tab_2_stat")
                   .setIndicator(tabName.getText())
                   .setContent(R.id.themStatsTab));
    mTabHost.addTab(mTabHost
                   .newTabSpec("tab_3_stat")
                   .setIndicator("Archive")
                   .setContent(R.id.archiveStatsTab));
    mTabHost.setOnTabChangedListener(this);
    getTabWidget().getChildAt(1).setOnClickListener(new onThemTabClicked());
    mTabHost.setCurrentTab(0);

    onTabChanged("tab_1_stat");

}

.....

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent intent) {
    super.onActivityResult(requestCode, resultCode, intent);

    tabName.setText("ChangedTabText");
    Bundle extras = intent.getExtras();
    themStats = extras.getStringArray("themStats");
    mTabHost.setCurrentTab(1);
    onTabChanged("tab_2_stat");
}

这也不起作用,还有其他一些尝试。有任何想法吗?提前谢谢!

7 个答案:

答案 0 :(得分:7)

哇。好的,这是一种痛苦。显然,TabWidget使用RelativeLayout做了一些时髦的事情,每当我尝试用radek-k的解决方案做任何事情时,它都会因为RelativeLayout错误而爆炸。所以基本上解决了以下问题。它还允许您更改字体,字体大小,字体颜色等。

TabWidget vTabs = getTabWidget();
RelativeLayout rLayout = (RelativeLayout) vTabs.getChildAt(tabIndex);
((TextView) rLayout.getChildAt(textIndex)).setText("NewTabText");

或一行......

((TextView)((RelativeLayout)getTabWidget().getChildAt(tabIndex)).getChildAt(textIndex)).setText("NewTabText");

其中“textIndex”是文本字段的索引。在这种情况下,它是1.如果选项卡有图标或自定义修改,索引可能会更改。

再次感谢radek-k。你肯定让我指出了正确的方向。

答案 1 :(得分:6)

尝试这种最适合我的方法:

tabLayout.getTabAt(index).setText("TabName");

答案 2 :(得分:5)

您可以使用TextView在不知道findViewById的魔法索引的情况下执行此操作:

TabWidget vTabs = getTabWidget();
View indicatorView = vTabs.getChildAt(tabIndex);
((TextView) indicatorView.findViewById(android.R.id.title)).setText("NewTabText");

答案 3 :(得分:2)

TabWidget vTabs = .....;

// get desired tab view  
View vTab = vTabs.getChildAt(i);

// I guess vTab is instance of TextView
TextView vText = (TextView) vTab;

vText.setText(...);

答案 4 :(得分:0)

你可以这样做

TabHost tabHost = getTabHost();
TextView tv = (TextView) tabHost.getTabWidget().getChildAt(0).findViewById(android.R.id.title);
tv.setText("New Tab Text");

系统生成android.R.id.title的位置,只需根据需要更改 ChildIndex 文字

答案 5 :(得分:0)

这很简单。尝试一下。可以。

TabWidget tab = (TabWidget) findViewById (R.id.tab1);
((TextView)tab.getChildTabViewAt (1)).setText ("New name here");

答案 6 :(得分:0)

这是您的布局:

<com.google.android.material.tabs.TabLayout
    android:id="@+id/ref_tabs"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <com.google.android.material.tabs.TabItem
        android:id="@+id/ref_book"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <com.google.android.material.tabs.TabItem
        android:id="@+id/ref_chpter"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <com.google.android.material.tabs.TabItem
        android:id="@+id/ref_verse"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

</com.google.android.material.tabs.TabLayout>

这是您的代码:

TabLayout tabLayout = findViewById(R.id.ref_tabs);
tabLayout.getTabAt(0).setText("BOOK"));
tabLayout.getTabAt(1).setText("CHAPTER"));
tabLayout.getTabAt(2).setText("VERSE"));