第一步java
在Xml 中android
<com.hjm.bottomtabbar.BottomTabBar android:layout_width="match_parent" android:layout_height="match_parent" android:id="@+id/button" ></com.hjm.bottomtabbar.BottomTabBar>
第二步ide
在java代碼zhong字體
button = (BottomTabBar) findViewById(R.id.button); button.init(getSupportFragmentManager()) .setImgSize(50, 50)//圖片大小 .setFontSize(20)//字體大小 .setTabPadding(4, 6, 10)//內邊距 .setChangeColor(Color.RED, Color.GREEN)//選中和未選中顏色 .addTabItem("第一項", null, AFragment.class) .addTabItem("第二項", null, BFragment.class) .setTabBarBackgroundColor(Color.WHITE)//背景色 .isShowDivider(false);//是否顯示邊框