您好,登錄后才能下訂單哦!
怎么在Android中利用BottomTabBar實(shí)現(xiàn)一個(gè)底部導(dǎo)航頁(yè)效果?相信很多沒(méi)有經(jīng)驗(yàn)的人對(duì)此束手無(wú)策,為此本文總結(jié)了問(wèn)題出現(xiàn)的原因和解決方法,通過(guò)這篇文章希望你能解決這個(gè)問(wèn)題。
1. 導(dǎo)依賴
compile 'com.hjm:BottomTabBar:1.1.1'
2. 在所實(shí)現(xiàn)的XML中定義一下該控件
<com.hjm.bottomtabbar.BottomTabBar android:id="@+id/bottom_tab_bar" android:layout_width="match_parent" android:layout_height="match_parent" > </com.hjm.bottomtabbar.BottomTabBar>
3. 定義每個(gè)Fragment,這里列舉一個(gè)
public class OneFragment extends Fragment{ @Nullable @Override public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) { View view = inflater.inflate(R.layout.fragment1, container, false); return view; } }
4. MainActivity中
//Fragment頁(yè)面設(shè)置頁(yè) public class MainActivity extends AppCompatActivity { private BottomTabBar bottomTabBar; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); bottomTabBar = findViewById(R.id.bottom_tab_bar); //初始化Fragment bottomTabBar.init(getSupportFragmentManager()) .setImgSize(50, 50) //圖片大小 .setFontSize(12) //字體大小 .setTabPadding(4, 6, 10)//選項(xiàng)卡的間距 .setChangeColor(Color.RED, Color.BLUE) //選項(xiàng)卡的選擇顏色 .addTabItem("首頁(yè)", R.drawable.home_, ShouYe_Fragment.class) .addTabItem("分類", R.drawable.classify, FenLei_Fragment.class) .addTabItem("發(fā)現(xiàn)", R.drawable.cart, Cart_Fragment.class) .addTabItem("我的", R.drawable.mine, Mine_Fragment.class) .isShowDivider(true) //是否包含分割線 .setOnTabChangeListener(new BottomTabBar.OnTabChangeListener() { @Override public void onTabChange(int position, String name) { Log.i("TGA", "位置:" + position + " 選項(xiàng)卡:" + name); } }); } }
效果圖:
下面通過(guò)實(shí)例代碼介紹下 Android_BottomTabBar
一:依賴
compile 'com.hjm:BottomTabBar:1.1.1'
二:布局
<com.hjm.bottomtabbar.BottomTabBar android:id="@+id/bottomTabBar" android:layout_width="match_parent" android:layout_height="match_parent"> </com.hjm.bottomtabbar.BottomTabBar>
三:代碼
public class MainActivity extends AppCompatActivity { @BindView(R.id.bottomtabbar) BottomTabBar bottomtabbar; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); ButterKnife.bind(this); bottomtabbar.init(getSupportFragmentManager()) .setImgSize(25, 25) .setFontSize(8) .setTabPadding(4, 6, 10) .setChangeColor(Color.RED, Color.BLACK) .addTabItem("精選", R.drawable.choiceness, ChoicenessFragment.class) .addTabItem("專題", R.drawable.dissertation, DissertationFragment.class) .addTabItem("發(fā)現(xiàn)", R.drawable.discover, DiscoverFragment.class) .addTabItem("我的", R.drawable.my, MyFragment.class) .isShowDivider(false) .setOnTabChangeListener(new BottomTabBar.OnTabChangeListener() { @Override public void onTabChange(int position, String name) { } }) .setTabBarBackgroundResource(R.drawable.bottom_bg) .setBackgroundResource(R.drawable.bg_blue); } }
看完上述內(nèi)容,你們掌握怎么在Android中利用BottomTabBar實(shí)現(xiàn)一個(gè)底部導(dǎo)航頁(yè)效果的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。