真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

實(shí)現(xiàn)底部導(dǎo)航欄及切換tab重新加載的問(wèn)題解決

許多的App都使用底部導(dǎo)航欄來(lái)實(shí)現(xiàn)導(dǎo)航功能,我們可以使用RadioGroup+RadioButton的形式或者直接Button數(shù)組的方式實(shí)現(xiàn),而谷歌官方提供了FragmentTabHost來(lái)方便快捷實(shí)現(xiàn)底部導(dǎo)航欄。

創(chuàng)新互聯(lián)建站專(zhuān)注于新疆企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站建設(shè),商城網(wǎng)站建設(shè)。新疆網(wǎng)站建設(shè)公司,為新疆等地區(qū)提供建站服務(wù)。全流程按需求定制網(wǎng)站,專(zhuān)業(yè)設(shè)計(jì),全程項(xiàng)目跟蹤,創(chuàng)新互聯(lián)建站專(zhuān)業(yè)和態(tài)度為您提供的服務(wù)

android.support.v4.app.FragmentTabHost

實(shí)現(xiàn)底部導(dǎo)航欄及切換tab重新加載的問(wèn)題解決

主要代碼:

fragmentTabHost.setup(this, getSupportFragmentManager(), R.id.layout_content);

for (int i = 0; i < TAB_NUM; i++){
    TabHost.TabSpec tabSpec = fragmentTabHost.newTabSpec(mTitles[i]);
    tabSpec.setIndicator(getTabView(i));
    fragmentTabHost.addTab(tabSpec, mFragments[i], null);
}

布局文件:



    

    

    

    

實(shí)現(xiàn)代碼:

public class FragmentTabHostActivity extends AppCompatActivity {

    private static final int TAB_NUM = 4;

    private Class[] mFragments = new Class[]{//tab對(duì)應(yīng)的Fragment
            AFragment.class,
            BFragment.class,
            CFragment.class,
            DFragment.class
    };

    private int[] mTabDrawables = new int[]{//tab圖片
            R.drawable.tab_work,
            R.drawable.tab_im,
            R.drawable.tab_ebook,
            R.drawable.tab_me,
    };

    private String[] mTitles = new String[]{//tab標(biāo)題文字
            "工作",
            "微信",
            "通信錄",
            "我的"
    };

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_fragment_tab_host);

        FragmentTabHost fragmentTabHost = (FragmentTabHost) findViewById(R.id.tabhost);
        fragmentTabHost.setup(this, getSupportFragmentManager(), R.id.layout_content);

        for (int i = 0; i < TAB_NUM; i++){
            TabHost.TabSpec tabSpec = fragmentTabHost.newTabSpec(mTitles[i]);
            tabSpec.setIndicator(getTabView(i));
            fragmentTabHost.addTab(tabSpec, mFragments[i], null);
        }
        //部分機(jī)型可能會(huì)顯示tab之間的分割線,設(shè)置為null取消掉
        fragmentTabHost.getTabWidget().setDividerDrawable(null);
    }

    private View getTabView(int index) {
        View view = View.inflate(this, R.layout.tab_indicator, null);
        ImageView iv = (ImageView) view.findViewById(R.id.maintab_iv);
        TextView tv = (TextView) view.findViewById(R.id.maintab_tv);

        iv.setImageDrawable(getDrawable(mTabDrawables[index]));
        tv.setText(mTitles[index]);

        return view;
    }
}

備注:

  這個(gè)實(shí)現(xiàn)方式有一個(gè)弊端,就是每次切換tab都會(huì)重新加載Fragment。實(shí)際項(xiàng)目過(guò)程種可能并不需要,而是需要在切換過(guò)程中保留Fragment狀態(tài)。

原因:

  FragmentTabHost在切換tab的時(shí)候使用detach和attach的方法來(lái)顯示/隱藏Fragment。

解決方法:

  修改FragmentTabHost的源代碼將doTabChanged方法中的

  ft.detach(mLastTab.fragment); 改成  ft.hide(mLastTab.fragment);

  ft.attach(newTab.fragment); 改成 ft.show(newTab.fragment);


網(wǎng)頁(yè)標(biāo)題:實(shí)現(xiàn)底部導(dǎo)航欄及切換tab重新加載的問(wèn)題解決
本文網(wǎng)址:http://weahome.cn/article/pohced.html

其他資訊

在線咨詢(xún)

微信咨詢(xún)

電話咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部