Android Activity与Fragment实现底部导航器

单Activity多Fragment实现底部导航器

最近由于Android基础知识讲解需要,采用单Activity多Fragment实现类似QQ底部导航器示例,这种开发模式广泛应用于App开发,比如QQ,微信,新浪等,关于Android底部导航栏的实现方式特别多,实现也是五花八门,同时Google在自己推出的Material design中也增加了Bottom Navigation导航控制,实现起来更加简单,且支持动态效果更加酷炫,但是因为是基础的知识,所以打算通过自定义来实现,不使用Bottom Navigation(如果是实际的项目开发可以考虑使用哈~~),希望对初学者有所帮助。

BottomNavigationBar 地址:https://github.com/Ashok-Varma/BottomNavigation

分析

整体区域分为两部分:底部的导航区域和其余的内容区域,内容区域使用Fragment最为UI展示,底部导航区域添加点击事件,点击TAB切换Fragment,并做字体颜色和图片的切换,在切换上使用add()和hide()的方式,不使用replase(),至于两者的区别,这里就不再说明了,感兴趣的话可以谷歌。

整体结构

底部导航通常由图片和文字组成,上面为ImageView,下面为TextView

底部导航

底部Bottom

使用布局使用RelativeLayout,添加weight,平分屏幕宽度

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="@dimen/bottom_height"
  android:background="@color/base_white"
  android:orientation="vertical">

  <View
    android:layout_width="match_parent"
    android:layout_height="1dp"
    android:background="@color/gray_line" />

  <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal">

    <RelativeLayout
      android:layout_width="0dp"
      android:layout_height="match_parent"
      android:layout_weight="1">

      <RelativeLayout
        android:id="@+id/layout_home"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true">

        <ImageView
          android:id="@+id/img_home"
          android:layout_width="24dp"
          android:layout_height="24dp"
          android:layout_centerHorizontal="true"
          android:src="@mipmap/icon_home_pressed" />

        <TextView
          android:id="@+id/tv_home"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_below="@id/img_home"
          android:layout_centerHorizontal="true"
          android:text="首页"
          android:textColor="@color/bottom_text_color_pressed"
          android:textSize="12sp" />
      </RelativeLayout>

    </RelativeLayout>

    <RelativeLayout

      android:layout_width="0dp"
      android:layout_height="match_parent"
      android:layout_weight="1">

      <RelativeLayout
        android:id="@+id/layout_health"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true">

        <ImageView
          android:id="@+id/img_health"
          android:layout_width="24dp"
          android:layout_height="24dp"
          android:layout_centerHorizontal="true"
          android:src="@mipmap/icon_health_normal" />

        <TextView
          android:id="@+id/tv_health"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_below="@id/img_health"
          android:layout_centerHorizontal="true"
          android:text="健康"
          android:textColor="@color/bottom_text_color_normal"
          android:textSize="12sp" />
      </RelativeLayout>
    </RelativeLayout>

    <RelativeLayout

      android:layout_width="0dp"
      android:layout_height="match_parent"
      android:layout_weight="1">

      <RelativeLayout
        android:id="@+id/layout_msg"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true">

        <ImageView
          android:id="@+id/img_msg"
          android:layout_width="24dp"
          android:layout_height="24dp"
          android:layout_centerHorizontal="true"
          android:src="@mipmap/icon_msg_normal" />

        <TextView
          android:id="@+id/tv_msg"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_below="@id/img_msg"
          android:layout_centerHorizontal="true"
          android:text="消息"
          android:textColor="@color/bottom_text_color_normal"
          android:textSize="12sp" />
      </RelativeLayout>
    </RelativeLayout>
    >

    <RelativeLayout

      android:layout_width="0dp"
      android:layout_height="match_parent"
      android:layout_weight="1">

      <RelativeLayout
        android:id="@+id/layout_usercenter"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true">

        <ImageView
          android:id="@+id/img_usercenter"
          android:layout_width="24dp"
          android:layout_height="24dp"
          android:layout_centerHorizontal="true"
          android:src="@mipmap/icon_user_normal" />

        <TextView
          android:id="@+id/tv_usercenter"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_below="@id/img_usercenter"
          android:layout_centerHorizontal="true"
          android:text="我的"
          android:textColor="@color/bottom_text_color_normal"
          android:textSize="12sp" />
      </RelativeLayout>
    </RelativeLayout>
    >
  </LinearLayout>

</LinearLayout>

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:id="@+id/activity_main"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical"
  >
  <FrameLayout
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1"
    android:id="@+id/frame_content"
    />
  <include layout="@layout/layout_bottom"/>

</LinearLayout>

MainActivity

public class MainActivity extends BaseActivity implements View.OnClickListener {
  private RelativeLayout layout_home;
  private RelativeLayout layout_health;
  private RelativeLayout layout_msg;
  private RelativeLayout layout_usercenter;

  private ImageView img_home;
  private ImageView img_health;
  private ImageView img_msg;
  private ImageView img_usercenter;

  private TextView tv_home;
  private TextView tv_health;
  private TextView tv_msg;
  private TextView tv_usercenter;

  private Fragment[] fragments;
  private int currentIndex;
  private int index;

  private int selectColor;
  private int unSelectColor;

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

  @Override
  public void init() {
    initViews();
    initEvent();
    initData();

  }

  public void initViews(){
    layout_health=(RelativeLayout)findViewById(R.id.layout_health);
    layout_home=(RelativeLayout)findViewById(R.id.layout_home);
    layout_msg=(RelativeLayout)findViewById(R.id.layout_msg);
    layout_usercenter=(RelativeLayout)findViewById(R.id.layout_usercenter);

    img_home=(ImageView)findViewById(R.id.img_home);
    img_health=(ImageView)findViewById(R.id.img_health);
    img_msg=(ImageView)findViewById(R.id.img_msg);
    img_usercenter=(ImageView)findViewById(R.id.img_usercenter);

    tv_home=(TextView)findViewById(R.id.tv_home);
    tv_health=(TextView)findViewById(R.id.tv_health);
    tv_msg=(TextView)findViewById(R.id.tv_msg);
    tv_usercenter=(TextView)findViewById(R.id.tv_usercenter);
  }

  public void initEvent(){
    layout_home.setOnClickListener(this);
    layout_health.setOnClickListener(this);
    layout_msg.setOnClickListener(this);
    layout_usercenter.setOnClickListener(this);
  }

  public void initData(){
    selectColor=getResources().getColor(R.color.bottom_text_color_pressed);
    unSelectColor=getResources().getColor(R.color.bottom_text_color_normal);

    fragments=new Fragment[4];
    fragments[0]= HomeFragment.getInstance();
    fragments[1]= HealthFragment.getInstance();
    fragments[2]= MsgFragment.getInstance();
    fragments[3]= UserCenterFragment.getInstance();
    getSupportFragmentManager().beginTransaction().add(R.id.frame_content,fragments[0]).commit();
  }

  @Override
  public void onClick(View view) {
    switch (view.getId()){
      case R.id.layout_home:
        index=0;
        setTabs(index);
        break;
      case R.id.layout_health:
        index=1;
        setTabs(index);
        break;
      case R.id.layout_msg:
        index=2;
        setTabs(index);
        break;
      case R.id.layout_usercenter:
        index=3;
        setTabs(index);
        break;
    }
    if(currentIndex!=index){
      FragmentManager fm=getSupportFragmentManager();
      FragmentTransaction ft=fm.beginTransaction();
      ft.hide(fragments[currentIndex]);
      if(!fragments[index].isAdded()){
        ft.add(R.id.frame_content,fragments[index]);
      }
      ft.show(fragments[index]).commit();
    }
    currentIndex=index;
  }

  public void setTabs(int pos){
    resetColor();
    switch (pos){
      case 0:
        img_home.setImageResource(R.mipmap.icon_home_pressed);
        tv_home.setTextColor(selectColor);
        break;
      case 1:
        img_health.setImageResource(R.mipmap.icon_health_pressed);
        tv_health.setTextColor(selectColor);
        break;
      case 2:
        img_msg.setImageResource(R.mipmap.icon_msg_pressed);
        tv_msg.setTextColor(selectColor);
        break;
      case 3:
        img_usercenter.setImageResource(R.mipmap.icon_user_pressed);
        tv_usercenter.setTextColor(selectColor);
        break;
    }

  }
  public void resetColor(){
    img_home.setImageResource(R.mipmap.icon_home_normal);
    img_health.setImageResource(R.mipmap.icon_health_normal);
    img_msg.setImageResource(R.mipmap.icon_msg_normal);
    img_usercenter.setImageResource(R.mipmap.icon_user_normal);
    tv_home.setTextColor(unSelectColor);
    tv_health.setTextColor(unSelectColor);
    tv_msg.setTextColor(unSelectColor);
    tv_usercenter.setTextColor(unSelectColor);

  }

}

四个Fragment只是一个简单的布局,里面放置了一个TextView,这里就不再贴出来O.o.

效果图预览:

效果图

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

(0)

相关推荐

  • Android中Fragment多层嵌套时onActivityResult无法正确回调问题的解决方法

    前言: Fragment也可以使用startActivityForResult方法去打开一个Activity,然后在其onActivityResult方法中处理结果,可是当Fragment嵌套的时候,由于FragmentActivity的BUG导致只会回调最外那层Fragment的onActivityResult方法,于是乎当前Fragment就收不到结果了. BUG分析: 解决这个问题之前我们先通过源码分析一下是什么原因导致的,以22.2.1版本的support-v4库为例 我们先从Fragm

  • Android开发 Activity和Fragment详解

    1.Activity的生命周期 1)多个Activity组成Activity栈,当前活动位于栈顶.我们先来看看各种Activity基类的类图: 当Activity类定义出来之后,这个Activity何时被实例化.它所包含的方法何时被调用,这些都不是由开发者所决定的,都应该由Android系统来决定. 下面我们来看一下Activity的生命周期: 2.Activity的用法 1)启动.关闭Activity // 首先需要创建启动的Activity对应的Intent Intent intent =

  • Android Fragment与Activity之间的相互通信实例代码

    Android Fragment与Activity之间的相互通信 前言 自从Android3.0引入Fragment之后,主要是为了支持动态灵活的界面设计和屏幕的适配问题.Fragmenty不能单独存在,必须依赖Activity作为视图展示的一部分,同事它具有自己的生命周期,接收它自己的事件,具有更加灵活的特性,如今Fragment已经被广泛的应用到App开发中,最常见的就是单Activity多Fragment的模式.Fragment依赖于Activity而存在,就不可避免需要与Activity

  • Android基础之Fragment与Activity交互详解

    今天继续讲解Fragment组件的特性,主要是跟Activity的交互和生命周期的关系,我们前面已经说过Fragment是依赖于Activity的,而且生命周期也跟Activity绑定一起.下面我们看看Fragment跟Activity的关系. 1.为Activity创建事件回调方法在一些情况下, 你可能需要一个fragment与activity分享事件. 一个好的方法是在fragment中定义一个回调的interface, 并要求宿主activity实现它.当activity通过interfa

  • Android 管理Activity中的fragments

    FragmentManager 为了管理Activity中的fragments,需要使用FragmentManager. 为了得到它,需要调用Activity中的getFragmentManager()方法. 因为FragmentManager的API是在Android 3.0,也即API level 11开始引入的,所以对于之前的版本,需要使用support library中的FragmentActivity,并且使用getSupportFragmentManager()方法. 用Fragme

  • Android中Fragment与Activity的生命周期对比

    Fragment必须是依存于Activity而存在的,因此Activity的生命周期会直接影响到Fragment的生命周期.官网这张图很好的说明了俩者的关系: 可以看到Fragment比Activity多了几个额外的生命周期回调函数: onAttach(Activity); //当Activity与Fragment发生关联时调用 onCreateView(LayoutInflater,ViewGroup,Bundle); //创建该Fragment的视图 onActivityCreate(bun

  • Android PreferenceActivity与PreferenceFragment详解及简单实例

    Android  PreferenceActivity与PreferenceFragment 前言 转来转去又回到了Android,闲话少说,这里是参考Android原生的Settings应用来介绍一下PreferenceActivity.PreferenceFragment和headers的使用. PreferenceActivity 我们先通过一个简单的例子来学习一下PreferenceActivity的使用. preferences_scenario_1.xml 我们先通过xml文件来定义

  • Android应用开发中Fragment与Activity间通信示例讲解

    首先,如果你想在android3.0及以下版本使用fragment,你必须引用android-support-v4.jar这个包 然后你写的activity不能再继承自Activity类了,而是要继承android.support.v4.app.FragmentActivity,一些其他的父类也有相应的变化. 由于在android的实现机制中fragment和activity会被分别实例化为两个不相干的对象,他们之间的联系由activity的一个成员对象fragmentmanager来维护.fr

  • Android中fragment与activity之间的交互(两种实现方式)

    (未给Fragment的布局设置BackGound) 之前关于Android中Fragment的概念以及创建方式,我专门写了一篇博文<详解Android中Fragment的两种创建方式>,就如何创建Fragment混合布局做了详细的分析,今天就来详细说道说道Fragment与宿主Activity之间是如何实现数据交互的. 我们可以这样理解,宿主Activity中的Fragment之间要实现信息交互,就必须通过宿主Activity,Fragment之间是不可能直接实现信息交互的. Fragmen

  • Android Activity与Fragment之间的跳转实例详解

    Activity及Fragment之间的跳转 直接跳转 基本使用方法 public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } public void jump(Vie

  • Android 中Fragment与Activity通讯的详解

    Android 中Fragment与Activity通讯的详解 与activity通讯 尽管fragment的实现是独立于activity的,可以被用于多个activity,但是每个activity所包含的是同一个fragment的不同的实例. Fragment可以调用getActivity()方法很容易的得到它所在的activity的对象,然后就可以查找activity中的控件们(findViewById()). 例如: ViewlistView =getActivity().findView

随机推荐