2

好的,我有一个继承自 FragmentManager 的类。在这个类中,我有一个 FragmentPagerAdapter,它创建一些片段选项卡并插入到我的 TabHost 中。代码编译得很好并且可以工作。我把这些课程的一些部分放在下面。我用来做这个 android supprt package v4

public class TabMenu extends FragmentActivity implements TabHost.OnTabChangeListener, ViewPager.OnPageChangeListener{
...
@Override
public void onCreate(Bundle savedInstanceState){
    super.onCreate(savedInstanceState);
    setContentView(R.layout.tabs_container);
    setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
    tabHost = (TabHost)findViewById(android.R.id.tabhost);
    tabHost.setup();

    viewPager = (ViewPager)findViewById(R.id.viewpager);

    ...

    menuAdapter = new MenuPagerAdapter(this, tabHost, viewPager);
    menuAdapter.addTab("meutime", "Meu Time", MeuTime.class, extras);
    ...
    tabHost.setOnTabChangedListener(this);
    viewPager.setOnPageChangeListener(this);
            ...

public class MenuPagerAdapter extends FragmentPagerAdapter{
    public MenuPagerAdapter(FragmentActivity fragmentActivity, TabHost tabHost, ViewPager viewPager) {
        ...
    }

    @Override
    public Fragment getItem(int position) {
        String currentFragment = tabNames.get(position);
        return fragmentManager.findFragmentByTag(currentFragment);
    }

    @Override
    public int getCount() {
        // TODO Auto-generated method stub
        return tabNames.size();
    }

    public void addTab(String tag, String tabLabel, Class<?> cls, Bundle bundle){
        TabHost.TabSpec tabSpec = tabHost.newTabSpec(tag).setIndicator(createTab(tabLabel));
        Intent intent = new Intent();
        intent.setClass(context, cls);
        intent.putExtras(bundle);
        tabSpec.setContent(intent);
        tabNames.add(tag);
        tabHost.addTab(tabSpec);
        notifyDataSetChanged();
    }

    private View createTab(String tabLabel){
        View view = LayoutInflater.from(context).inflate(R.layout.tab_spec_layout, null, false);
        ...
        return view;
    }
}

当我实例化这个 FragmentActivity 时,我收到了以下异常:

java.lang.IllegalStateException: Did you forget to call 'public void setup(LocalActivityManager activityGroup)'?

在 Android 开发者网站上阅读 LocalActivityManager 已被弃用。但它在 TabHost.setup(LocalActivityManager) 中使用。如果不推荐使用此类,是否有针对这种情况的解决方案?我不能使用 TabContentFactory。

4

1 回答 1

0

不幸的是,我使用了 TabContentFactory。就我个人而言,我不喜欢这种创建空视图但有效的解决方案。

public void addTab(String tag, final String tabLabel, Class<?> cls, Bundle bundle){
        TabHost.TabSpec tabSpec = tabHost.newTabSpec(tag).setIndicator(createTab(tabLabel));
        tabSpec.setContent(new TabHost.TabContentFactory() {
            public View createTabContent(String tag) {
                View view = new View(context);
                view.setMinimumHeight(0);
                view.setMinimumWidth(0);
                return view;
            }
        });

        fragContentInstances.add(new FragContentInfos(cls, bundle));
        tabHost.addTab(tabSpec);
        notifyDataSetChanged();
    }

    private class FragContentInfos{
        private Class<?> cls;
        private Bundle bundle;
        public FragContentInfos(Class<?> cls, Bundle bundle){
            this.cls = cls;
            this.bundle = bundle;
        }
    }
于 2012-07-05T15:22:28.550 回答