BottomTabBar(底部导航栏)

首先添加依赖:

compile 'com.hjm:BottomTabBar:1.1.3'

//找到控件
btb = findViewById(R.id.main2_btb);

btb.init(getSupportFragmentManager())
        .setImgSize(60,60)//图片的大小
        .setFontSize(20)//字体的大小
        .isShowDivider(false)//设置是否显示分割线
        .setChangeColor(Color.RED,Color.DKGRAY)//设置选中的颜色、未选中的颜色
        .addTabItem("首页", R.mipmap.shou, Frag1.class)//设置文字、一张图片、fragment
        .addTabItem("分类",R.mipmap.fenlei, Frag2.class)
        .addTabItem("发现",R.mipmap.faxian, Frag3.class)
        .addTabItem("购物车",R.mipmap.cart, Frag4.class)
        .addTabItem("我的",R.mipmap.wode, Frag5.class)
        .addTabItem("第二项", R.mipmap.erweima, R.mipmap.ic_launcher, TwoFragment.class)//设置文字、两张图片、fragment
        .setTabBarBackgroundColor(Color.WHITE);//设置底部导航栏颜色 .setTabBarBackgroundResource(R.mipmap.ic_launcher)//设置底部导航栏的背景图片【与设置底部导航栏颜色方法不能同时使用,否则会覆盖掉前边设置的颜色】
布局文件:

xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context="bawei.com.myapplication.view.Main2Activity">

    <com.hjm.bottomtabbar.BottomTabBar
        android:id="@+id/main2_btb"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

LinearLayout>

你可能感兴趣的:(BottomTabBar(底部导航栏))