15

我正在使用带有多个选项卡的 FragmentTabHost(构造如下所示。但是,我不能使用 getFragmentByTag 随机寻址我的选项卡(在这种情况下返回 null),除非已通过单击选项卡至少一次激活了寻址选项卡。

FragmentTabHost 似乎会延迟选项卡的创建,直到我们真正需要它们(也就是用户单击它并想要查看它)。
有什么方法可以强制主机立即创建它们,以便我可以通过 getFragmentByTag 安全地访问它们?
或者是否可以“自己”创建选项卡并将它们添加到 TabHost?

4

1 回答 1

5

有什么方法可以强制主机立即创建它们,以便我可以通过 getFragmentByTag 安全地访问它们?

不,因为交易是在 执行的onAttachedToWindow()。让我们看一下源代码

@Override
protected void onAttachedToWindow() {
    super.onAttachedToWindow();
    String currentTab = getCurrentTabTag();
    // Go through all tabs and make sure their fragments match.
    // the correct state.
    FragmentTransaction ft = null;
    for (int i=0; i<mTabs.size(); i++) {
        TabInfo tab = mTabs.get(i);
        tab.fragment = mFragmentManager.findFragmentByTag(tab.tag);
        if (tab.fragment != null && !tab.fragment.isDetached()) {
            if (tab.tag.equals(currentTab)) {
                // The fragment for this tab is already there and
                // active, and it is what we really want to have
                // as the current tab.  Nothing to do.
                mLastTab = tab;
            } else {
                // This fragment was restored in the active state,
                // but is not the current tab.  Deactivate it.
                if (ft == null) {
                    ft = mFragmentManager.beginTransaction();
                }
                ft.detach(tab.fragment);
            }

        }
    }
    // We are now ready to go.  Make sure we are switched to the
    // correct tab.
    mAttached = true;
    ft = doTabChanged(currentTab, ft);
    if (ft != null) {
        ft.commit();
        mFragmentManager.executePendingTransactions();
    }
}
@Override
protected void  onDetachedFromWindow() {
    super.onDetachedFromWindow();
    mAttached = false;
}

如您所见,mFragmentManager.executePendingTransactions();onAttachedToWindow.

或者是否可以“自己”创建选项卡并将它们添加到 TabHost?

是的,您可以使用tabhost,并且可以使用以下方法创建选项卡内容。

公共 TabHost.TabSpec setContent (int viewId)

public TabHost.TabSpec setContent(意图意图)

公共 TabHost.TabSpec setContent (TabHost.TabContentFactory contentFactory)

于 2015-04-16T12:17:34.063 回答