0

我有Tab一个自定义布局,其中包含一个TextView. 稍后我将需要从实际的选项卡子项更新该文本。

这是我在TabActivity

    private void setupTab(final String tag) {

//Call createTabView() to give the tab a layout with some text
        View tabview = createTabView(mTabHost.getContext(), tag);

        Intent intent = new Intent().setClass(this, MyActivity.class);
        TabSpec setContent = mTabHost.newTabSpec(tag).setIndicator(tabview).setContent(intent);

        mTabHost.addTab(setContent);
        mTabList.add(setContent);

    }


    private View createTabView(final Context context, final String text) {
            View view = LayoutInflater.from(context).inflate(R.layout.tabs_bg, null);
            TextView tv = (TextView) view.findViewById(R.id.tabsText);
            tv.setText(text); //we set the text of the tab here.

            LinearLayout tvX = (LinearLayout) view.findViewById(R.id.tabsLayout);

            return view;
        }

所以我是如何设置它的......现在,在子选项卡的活动中,我需要它来更新文本......我认为如果我没有自定义选项卡,以下内容会起作用......

((TabActivity)getParent()).getTabHost().setTag(((TabActivity)getParent()).getTabHost().getCurrentTab(), "new text");

但我需要自定义标签:)

有没有人有任何想法或建议?谢谢

4

1 回答 1

0

好的,我明白了!

TabActivity我有这个方法:

protected void updateText(int key, String text) {
    View view = mTabHost.getCurrentTabView();
    TextView tv = (TextView) view.findViewById(R.id.tabsText);
    tv.setText(text);       
}

然后在我的子标签中,我称之为:

((MyTabActivity)getParent()).updateText(((TabActivity)getParent()).getTabHost().getCurrentTab(), "The new text");

现在你知道了:)

于 2012-02-12T04:59:16.283 回答