BottomTabBar底部导航栏



BottomTabBar的依赖包:
  compile 'com.hjm:BottomTabBar:1.1.2'

//底部导航栏
        mBottomTabBar.init(getSupportFragmentManager())
                .setChangeColor(Color.RED, Color.GRAY)
                .setImgSize(100, 100)
                .setFontSize(0)
                .addTabItem("首页", R.mipmap.ac1, R.mipmap.ac0, HomeFragment.class)
                .addTabItem("分类", R.mipmap.abx, R.mipmap.abw, CategroupFragment.class)
                .addTabItem("购物车", R.mipmap.abv, R.mipmap.abu, ShoppingFragment.class)
                .addTabItem("个人中心", R.mipmap.ac3, R.mipmap.ac2, MineFragment.class)
                .isShowDivider(false);
    }

    @Override
    protected void initView() {
        mBottomTabBar = (BottomTabBar) findViewById(R.id.bottom_tab_bar);
    }

猜你喜欢

转载自blog.csdn.net/niu_yue_jiao/article/details/80246344