BottomNavigationBar使用简析

一,基本使用

布局代码:

    xmlns:android="http://schemas.android.com/apk/res/android"

    xmlns:tools="http://schemas.android.com/tools"

    android:id="@+id/activity_main"

    android:layout_width="match_parent"

    android:layout_height="match_parent"

    tools:context="com.student.kevin.bottomnavigationbar.MainActivity">

   

        android:id="@+id/ll_content"

        android:layout_width="match_parent"

        android:layout_height="match_parent"

        android:orientation="vertical"

        android:text="Hello World!">

   

        android:id="@+id/bottom_navigation_bar"

        android:layout_width="match_parent"

        android:layout_height="wrap_content"

        android:layout_alignParentBottom="true">

代码中的使用:

mBottomNavigationBar = (BottomNavigationBar) findViewById(R.id.bottom_navigation_bar);

mBottomNavigationBar.addItem(new BottomNavigationItem(R.drawable.icon_one, R.string.tab_one).setActiveColorResource(R.color.green).setBadgeItem(badgeItem))

                .addItem(new BottomNavigationItem(R.drawable.icon_two, R.string.tab_two).setActiveColorResource(R.color.orange))

                .addItem(new BottomNavigationItem(R.drawable.icon_three, R.string.tab_three).setActiveColorResource(R.color.lime))

                .addItem(new BottomNavigationItem(R.drawable.icon_four, R.string.tab_four))//依次添加item,分别icon和名称

                .setFirstSelectedPosition(0)//设置默认选择item

                .initialise();//初始化

光有导航栏了,还要有监听,因为我们要根据点击导航栏的tab来切换不同的fragment。所以要添加监听事件。

mBottomNavigationBar.setTabSelectedListener(new BottomNavigationBar.OnTabSelectedListener(){

            @Override

            public void onTabSelected(int position) {

            }

            @Override

            public void onTabUnselected(int position) {

            }

            @Override

            public void onTabReselected(int position) {

            }

        });

mBottomNavigationBar.setTabSelectedListener();

@Override

    public void onTabSelected(int position) {

        FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();

        switch (position) {

            case 0:

                if (mFragmentOne == null) {

                    mFragmentOne = FragmentOne.newInstance("First Fragment");

                }

                transaction.replace(R.id.ll_content, mFragmentOne);

                break;

            case 1:

                if (mFragmentTwo == null) {

                    mFragmentTwo = FragmentTwo.newInstance("Second Fragment");

                }

                transaction.replace(R.id.ll_content, mFragmentTwo);

                break;

            case 2:

                if (mFragmentThree == null) {

                    mFragmentThree = FragmentThree.newInstance("Third Fragment");

                }

                transaction.replace(R.id.ll_content, mFragmentThree);

                break;

            case 3:

                if (mFragmentFour == null) {

                    mFragmentFour = FragmentFour.newInstance("Forth Fragment");

                }

                transaction.replace(R.id.ll_content, mFragmentFour);

                break;

            default:

                if (mFragmentOne == null) {

                    mFragmentOne = FragmentOne.newInstance("First Fragment");

                }

                transaction.replace(R.id.ll_content, mFragmentOne);

                break;

        }

        transaction.commit();

    }

    @Override

    public void onTabUnselected(int position) {

    }

    @Override

    public void onTabReselected(int position) {

    }

个性化BottomNavigationBar

值得一提,模式跟背景的设置都要在添加tab前面,不然不会有效果。

mBottomNavigationBar.setMode(BottomNavigationBar.MODE_SHIFTING);

        mBottomNavigationBar.setBackgroundStyle(BottomNavigationBar.BACKGROUND_STYLE_STATIC);

Mode和BackgroundStyle分别有三种,分别包含一种Default模式

设置导航栏颜色

当然导航栏的颜色也是可以设置成固定颜色的,刚开始的效果图可以看到导航栏是蓝色。默认颜色的colorAccent

mBottomNavigationBar.setBarBackgroundColor(R.color.blue);//set background color for navigation bar,设置底部导航栏颜色

添加黄色小圆点

还上面的效果图上可以看到,第一个tab上面有一个黄色的小圆点。这跟小红点是一样的,只是我设置颜色为黄色的了。

这个就是添加了一个BadgeItem.

BadgeItem badgeItem = new BadgeItem();

        badgeItem.setHideOnSelect(false)

                .setText("10")

                .setBackgroundColorResource(R.color.orange)

                .setBorderWidth(0);

//导航栏中的tab添加小圆点

mBottomNavigationBar.addItem(new BottomNavigationItem(R.drawable.icon_one, R.string.tab_one).setActiveColorResource(R.color.green).setBadge

参考:http://blog.csdn.net/student9128/article/details/53239087

二,进阶

public class MainActivity extends AppCompatActivity implements BottomNavigationBar.OnTabSelectedListener {

    private ArrayList fragments;

    @Override

    protected void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);

        setContentView(R.layout.activity_main);

        BottomNavigationBar bottomNavigationBar = (BottomNavigationBar) findViewById(R.id.bottom_navigation_bar);

        bottomNavigationBar.setMode(BottomNavigationBar.MODE_FIXED);

        bottomNavigationBar

                .setBackgroundStyle(BottomNavigationBar.BACKGROUND_STYLE_STATIC

                );

        bottomNavigationBar.addItem(new BottomNavigationItem(R.mipmap.ic_home_white_24dp, "Home").setActiveColorResource(R.color.orange))

                .addItem(new BottomNavigationItem(R.mipmap.ic_book_white_24dp, "Books").setActiveColorResource(R.color.teal))

                .addItem(new BottomNavigationItem(R.mipmap.ic_music_note_white_24dp, "Music").setActiveColorResource(R.color.blue))

                .addItem(new BottomNavigationItem(R.mipmap.ic_tv_white_24dp, "Movies & TV").setActiveColorResource(R.color.brown))

                .addItem(new BottomNavigationItem(R.mipmap.ic_videogame_asset_white_24dp, "Games").setActiveColorResource(R.color.grey))

                .setFirstSelectedPosition(0)

                .initialise();

        fragments = getFragments();

        setDefaultFragment();

        bottomNavigationBar.setTabSelectedListener(this);

    }

    /** * 设置默认的 */

    private void setDefaultFragment() {

        FragmentManager fm = getSupportFragmentManager();

        FragmentTransaction transaction = fm.beginTransaction();

        transaction.replace(R.id.layFrame, HomeFragment.newInstance("Home"));

        transaction.commit();

    }

    private ArrayList getFragments() {

        ArrayList fragments = new ArrayList<>();

        fragments.add(HomeFragment.newInstance("Home"));

        fragments.add(BookFragment.newInstance("Books"));

        fragments.add(MusicFragment.newInstance("Music"));

        fragments.add(TvFragment.newInstance("Movies & TV"));

        fragments.add(GameFragment.newInstance("Games"));

        return fragments;

    }

    @Override

    public void onTabSelected(int position) {

        if (fragments != null) {

            if (position < fragments.size()) {

                FragmentManager fm = getSupportFragmentManager();

                FragmentTransaction ft = fm.beginTransaction();

                Fragment fragment = fragments.get(position);

                if (fragment.isAdded()) {

                    ft.replace(R.id.layFrame, fragment);

                } else {

                    ft.add(R.id.layFrame, fragment);

                }

                ft.commitAllowingStateLoss();

            }

        }

    }

    @Override

    public void onTabUnselected(int position) {

        if (fragments != null) {

            if (position < fragments.size()) {

                FragmentManager fm = getSupportFragmentManager();

                FragmentTransaction ft = fm.beginTransaction();

                Fragment fragment = fragments.get(position);

                ft.remove(fragment);

                ft.commitAllowingStateLoss();

            }

        }

    }

    @Override

    public void onTabReselected(int position) {

    }

}

这里主要注意一下Fragment的填充方式,静态工厂构造方法。

bottomNavigationBar

.setActiveColor(R.color.primary)

.setInActiveColor("#FFFFFF")

.setBarBackgroundColor("#ECECEC")

是图标和文字的颜色(选中/未选中)

默认颜色:

1.主题的PrimaryColor将是active color

2.Color.LTGRAY(灰色)是 in-active color

3.白色是背景色

参考:http://www.open-open.com/lib/view/open1465996383855.html

你可能感兴趣的:(BottomNavigationBar使用简析)