0

我在我的应用程序的新版本中使用 ActionBarSherlock 和 TabViewPager,并且我试图在某个选项卡处于活动状态时执行某些代码。首先,让我向您展示我是如何设置我的 TabHost 并向其中添加片段的。

 private void intialiseViewPager() {

    List<Fragment> fragments = new Vector<Fragment>();
    fragments.add(Fragment.instantiate(this, TabFragment1.class.getName()));
    fragments.add(Fragment.instantiate(this, TabFragment2.class.getName()));
    if (appVersionV3()) {
        fragments.add(Fragment.instantiate(this, TabFragment3.class.getName()));
    }

    this.mPagerAdapter  = new PagerAdapter(super.getSupportFragmentManager(), fragments);
    //
    this.mViewPager = (ViewPager)super.findViewById(R.id.viewpager);
    this.mViewPager.setAdapter(this.mPagerAdapter);
    this.mViewPager.setOnPageChangeListener(this);
}

/**
 * Initialise the Tab Host
 */
private void initialiseTabHost(Bundle args) {
    mTabHost = (TabHost)findViewById(android.R.id.tabhost);
    mTabHost.setup();
    TabInfo tabInfo = null;
    TabsViewPagerFragmentActivity.AddTab(this, this.mTabHost, this.mTabHost.newTabSpec("Tab1").setIndicator("Calculator"), ( tabInfo = new TabInfo("Calculator", TabFragment1.class, args)));
    this.mapTabInfo.put(tabInfo.tag, tabInfo);

    TabsViewPagerFragmentActivity.AddTab(this, this.mTabHost, this.mTabHost.newTabSpec("Tab2").setIndicator("Tracker"), ( tabInfo = new TabInfo("Tracker", TabFragment2.class, args)));
    this.mapTabInfo.put(tabInfo.tag, tabInfo);

    if (appVersionV3()) {
        TabsViewPagerFragmentActivity.AddTab(this, this.mTabHost, this.mTabHost.newTabSpec("Tab3").setIndicator("Food List"), ( tabInfo = new TabInfo("FoodList", TabFragment3.class, args)));
        this.mapTabInfo.put(tabInfo.tag, tabInfo);
    }

    // Default to first tab
    //this.onTabChanged("Tab1");
    //
    mTabHost.setOnTabChangedListener(this);

}

private static void AddTab(TabsViewPagerFragmentActivity activity, TabHost tabHost, TabHost.TabSpec tabSpec, TabInfo tabInfo) {
    // Attach a Tab view factory to the spec
    tabSpec.setContent(activity.new TabFactory(activity));
    tabHost.addTab(tabSpec);
}

我的第一个想法是从 Activity onTabChanged 中调用一个片段的方法,但是什么不起作用。请参阅下面的尝试 - 它所做的只是强制关闭应用程序,如果需要,我可以获得此崩溃的日志。

    public void onTabChanged(String tag) {
    //TabInfo newTab = this.mapTabInfo.get(tag);
    int pos = this.mTabHost.getCurrentTab();
    mTabHost.getCurrentTabView().invalidate();

    this.mViewPager.setCurrentItem(pos);

    if (pos == 1) {
        TabFragment2 tabFragment = (TabFragment2) getSupportFragmentManager().findFragmentByTag("Tracker");

tabFragment.calculatePoints();
        }
    }

似乎一旦主活动启动,片段的 onResume 就会被调用,因此我无法在其中调用片段特定的代码来检测更改。

我唯一的另一个想法是使用onResumeFragments(),但似乎没有为该类型定义SherlockFragment- 不确定这是否是 ActionBarSherlock 错误的错误,或者它应该是这样的。

任何帮助将不胜感激!

4

1 回答 1

0

有人提到,因为我的片段在一个列表中,并且只是从列表中获取我需要的片段。我全局初始化了我的列表/向量,然后能够从列表中检索片段并在选项卡更改时根据需要调用其各自的函数,它就像一个魅力。

public void onTabChanged(String tag) {
    //TabInfo newTab = this.mapTabInfo.get(tag);
    int pos = this.mTabHost.getCurrentTab();
    mTabHost.getCurrentTabView().invalidate();
    this.mViewPager.setCurrentItem(pos);

    // calculatePoints on TabChange
    if (pos == 1) {
        TabFragment2 fragTrack = (TabFragment2) fragments.get(1);
        fragTrack.calculatePoints();
        fragTrack.createAndFillDatabase();
    }

    else if (pos ==2) {
        TabFragment3 fragFoodList = (TabFragment3) fragments.get(2);
        fragFoodList.createAndFillDatabase("none");
    }

    this.supportInvalidateOptionsMenu();
}
于 2012-12-23T15:23:43.517 回答