底部导航栏 BottomTabBar

来源:互联网 发布:淘宝户外运动店铺 编辑:程序博客网 时间:2024/06/05 16:35
 依赖 compile 'com.hjm:BottomTabBar:1.1.1'   BottomTabBar bottomTabBar = findViewById(R.id.botab);   bottomTabBar.init(getSupportFragmentManager())        .setImgSize(35, 35)        .setFontSize(10)        .setChangeColor(Color.RED, Color.GRAY)        // 参数1:frag0是fragment  ,  参数2和参数3是 未选中图片和选中图片        .addTabItem("frag0",R.mipmap.ic_launcher,R.mipmap.ic_launcher,fragme.class)        .addTabItem("frag1",R.mipmap.ic_launcher,R.mipmap.ic_launcher,fragme1.class)        .addTabItem("frag2",R.mipmap.ic_launcher,R.mipmap.ic_launcher,fragme2.class)        .addTabItem("frag3",R.mipmap.ic_launcher,R.mipmap.ic_launcher,fragme3.class)        .isShowDivider(false);//布局文件
<com.hjm.bottomtabbar.BottomTabBar    android:layout_width="match_parent"    android:layout_height="match_parent "    android:id="@+id/botab"     />