Android快速实现底部导航栏

效果图:

Android快速实现底部导航栏_第1张图片

使用步骤:

1.倒依赖:

implementation 'com.hjm:BottomTabBar:1.1.1'

2.在需要得xml布局中写一哈该控件

    
    

3.在需要得Activity中初始化并使用该控件

@BindView(R.id.bottom)
BottomTabBar bottom;
    bottom.init(getSupportFragmentManager())
                .setImgSize(40, 40)
                .setFontSize(15)
                .setChangeColor(Color.BLUE, Color.DKGRAY)
                .addTabItem("主页", R.drawable.tab_home_selected, R.drawable.tab_home_default, OneFragment.class) //第一张图片是选中的,第二中为选中
                .addTabItem("驾考专家", R.drawable.test_select, R.drawable.test_default, TwoFragment.class)
                .addTabItem("社区", R.drawable.shequ_select, R.drawable.shequ_default, ThreeFragment.class)
                .addTabItem("我的", R.drawable.mine_select, R.drawable.my_default, FourFragment.class)
                .isShowDivider(false);

 

 

 

你可能感兴趣的:(Android快速实现底部导航栏)