android 底部导航栏的实现

网上有很多教程实现底部导航栏,这里我就我用的这种radioGroup+rdioButton+fragment,做一记录。

  1. RadioButton 有默认的选中和非选中的样式,默认颜色是 colorAcent ,效果如下图所示:
RadioGroup效果图.png

因此我们要采用 RadioGroup 这种方式来实现底部导航栏的话,首先需要去掉它的默认样式,所以我们来定义一个 style:
res->values->styles.xml

<style name="RadioGroupButtonStyle">
        <!--去除button默认样式-->
        <item name="android:button">@null</item>
        <item name="android:gravity">center</item>
        <item name="android:layout_width">0dp</item>
        <item name="android:layout_height">wrap_content</item>
        <item name="android:layout_weight">1</item>
        <item name="android:textSize">12sp</item>
        <item name="android:textColor">#696969</item>
    </style>
  1. 布局文件
<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:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.bbw.weather.MainActivity">

    <FrameLayout
        android:id="@+id/main_fragment"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1">
    </FrameLayout>

    <View
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:alpha="0.6"
        android:background="#808080"/>

    <RadioGroup
        android:id="@+id/radio_group_button"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:orientation="horizontal"
        android:gravity="center"
        android:background="#fff">
        <RadioButton
            android:id="@+id/radio_button_home"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="首页"
            android:drawableTop="@drawable/tab_home_selector"
            style="@style/RadioGroupButtonStyle"/>
        <RadioButton
            android:id="@+id/radio_button_like"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="收藏"
            android:drawableTop="@drawable/tab_like_selector"
            style="@style/RadioGroupButtonStyle"/>
        <RadioButton
            android:id="@+id/radio_button_add"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="添加"
            android:drawableTop="@drawable/tab_add_selector"
            style="@style/RadioGroupButtonStyle"/>
        <RadioButton
            android:id="@+id/radio_button_me"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="关于"
            android:drawableTop="@drawable/tab_me_selector"
            style="@style/RadioGroupButtonStyle"/>
    </RadioGroup>
</LinearLayout>

添加一个 RadioGroup 和四个 RadioButton , 因为去掉了原来的样式,因此要设置我们每个 RadioButton 显示的图标。

  1. 布局文件好了之后,看一下 Activity 中的代码:
package com.example.bbw.weather;

import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.RadioButton;
import android.widget.RadioGroup;

import com.example.bbw.weather.Fragments.AboutFragment;
import com.example.bbw.weather.Fragments.AddFragment;
import com.example.bbw.weather.Fragments.HomeFragment;
import com.example.bbw.weather.Fragments.LikeFragment;

public class MainActivity extends AppCompatActivity implements RadioGroup.OnCheckedChangeListener{

    private RadioGroup mRadioGroup;
    private RadioButton radio_button_home, radio_button_like, radio_button_about, radio_button_add ;

    private Fragment homeFragment, likeFragment, aboutFragment, addFragment;
    private Fragment mFragment;//当前显示的碎片

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        initView();

        FragmentManager fragmentManager = getSupportFragmentManager();
        fragmentManager.beginTransaction().add(R.id.main_fragment,homeFragment).commit();
        mFragment = homeFragment;
    }

    private void initView() {

        mRadioGroup = (RadioGroup) findViewById(R.id.radio_group_button);
        radio_button_home = (RadioButton) findViewById(R.id.radio_button_home);
        radio_button_about = (RadioButton) findViewById(R.id.radio_button_me);
        radio_button_add = (RadioButton) findViewById(R.id.radio_button_add);
        radio_button_like = (RadioButton) findViewById(R.id.radio_button_like);
        mRadioGroup.setOnCheckedChangeListener(this);

        homeFragment = new HomeFragment();
        aboutFragment = new AboutFragment();
        addFragment = new AddFragment();
        likeFragment = new LikeFragment();
    }

    @Override
    public void onCheckedChanged(RadioGroup radioGroup,int checkId) {

        switch (checkId){
            case R.id.radio_button_home:
                radio_button_home.setChecked(true);
                radio_button_about.setChecked(false);
                radio_button_add.setChecked(false);
                radio_button_like.setChecked(false);
                switchFragment(homeFragment);
                break;
            case R.id.radio_button_like:
                radio_button_home.setChecked(false);
                radio_button_about.setChecked(false);
                radio_button_add.setChecked(false);
                radio_button_like.setChecked(true);
                switchFragment(likeFragment);
                break;
            case R.id.radio_button_add:
                radio_button_home.setChecked(false);
                radio_button_about.setChecked(false);
                radio_button_add.setChecked(true);
                radio_button_like.setChecked(false);
                switchFragment(addFragment);
                break;
            case R.id.radio_button_me:
                radio_button_home.setChecked(false);
                radio_button_about.setChecked(true);
                radio_button_add.setChecked(false);
                radio_button_like.setChecked(false);
                switchFragment(aboutFragment);
                break;
        }
    }

    public void switchFragment(Fragment fragment) {
        //判断当前显示的Fragment是不是切换的Fragment
        if(mFragment != fragment) {
            //判断切换的Fragment是否已经添加过
            if (!fragment.isAdded()) {
                //getSupportFragmentManager().popBackStack();
                //如果没有,则先把当前的Fragment隐藏,把切换的Fragment添加上
                getSupportFragmentManager().beginTransaction().replace(R.id.main_fragment,fragment).addToBackStack(null).commit();
            } else {
                //getSupportFragmentManager().popBackStack();
                //如果已经添加过,则先把当前的Fragment隐藏,把切换的Fragment显示出来
                getSupportFragmentManager().beginTransaction().replace(R.id.main_fragment,fragment).addToBackStack(null).commit();
            }
            mFragment = fragment;
        }
    }
}
  1. 在 onCheckedChanged 回调里面切换 Fragment 就行了。因为 RadioButton 有 check 和 unCheck 状态,直接使用 selector 就能切换状态的图标和 check 文字的颜色。
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_checked="true" android:drawable="@drawable/ic_add_feed" />
    <item android:drawable="@drawable/ic_add_feed" />
</selector>
  1. 其它的实现方式参考 : https://juejin.im/post/5901b564570c35005804424b
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,125评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,293评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,054评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,077评论 1 291
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,096评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,062评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,988评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,817评论 0 273
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,266评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,486评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,646评论 1 347
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,375评论 5 342
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,974评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,621评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,796评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,642评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,538评论 2 352

推荐阅读更多精彩内容