我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Android Activity与Fragment实现底部导航器

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

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:class="lazy" data-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:class="lazy" data-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:class="lazy" data-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:class="lazy" data-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.

效果图预览:


效果图

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

您可能感兴趣的文章:Android基础之Fragment与Activity交互详解Android 管理Activity中的fragmentsAndroid中fragment与activity之间的交互(两种实现方式)Android Activity与Fragment之间的跳转实例详解Android应用开发中Fragment与Activity间通信示例讲解Android中Activity和Fragment传递数据的两种方式Android Fragment与Activity之间的相互通信实例代码详解Android activity与fragment之间的通信交互Android 中Fragment与Activity通讯的详解android横竖屏切换时候Activity的生命周期Android Activity 横竖屏切换的生命周期Android开发使用Activity嵌套多个Fragment实现横竖屏切换功能的方法


免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Android Activity与Fragment实现底部导航器

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Android Activity与Fragment实现底部导航器

单Activity多Fragment实现底部导航器 最近由于Android基础知识讲解需要,采用单Activity多Fragment实现类似QQ底部导航器示例,这种开发模式广泛应用于App开发,比如QQ,微信,新浪等,关于Android底部
2022-06-06

android中Fragment+RadioButton实现底部导航栏

在App中经常看到这样的tab底部导航栏那么这种效果是如何实现,实现的方式有很多种,最常见的就是使用Fragment+RadioButton去实现。下面我们来写一个例子 首先我们先在activity_mian.xml定义布局,整个布局的外面
2022-06-06

Android程序开发之Fragment实现底部导航栏实例代码

流行的应用的导航一般分为两种,一种是底部导航,一种是侧边栏。 说明 IDE:AS,Android studio; 模拟器:genymotion; 实现的效果,见下图。具体实现 为了讲明白这个实现过程,我们贴出来的代码多一写,这样更方便理解
2022-06-06

怎么在android应用中利用Fragment与RadioButton实现一个底部导航栏

本篇文章为大家展示了怎么在android应用中利用Fragment与RadioButton实现一个底部导航栏,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。首先我们先在activity_mian.xm
2023-05-31

Android中如何使用RadioGroup和Fragment实现底部导航栏的功能

小编给大家分享一下Android中如何使用RadioGroup和Fragment实现底部导航栏的功能,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!在一些购物商城中
2023-06-15

Android如何实现底部图标与Fragment

这篇文章主要介绍了Android如何实现底部图标与Fragment,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。效果如下:1.首先在res下的drawable下新建四个图标的
2023-05-31

Android使用RadioGroup实现底部导航栏

RadioGroup实现底部导航栏效果,如图:: 实现可最基本的导航栏功能,不能左右滑动,只能点击1.内嵌的fragment的布局:
2023-05-30

Android 开发之BottomBar+ViewPager+Fragment实现炫酷的底部导航效果

BottomBarBottomBar是Github上的一个开源框架,因为从1.3.3开始不支持fragments了,要自己配置,弄了很久,不管是app的fragment还是V4 的程序总是总是闪退。于是就用这种方式实现了,效果还不错。git
2022-06-06

ANDROID BottomNavigationBar底部导航栏的实现示例

第一种介绍的就是使用开源库,因为使用开源库最简单,也更加的符合我们的审美标准,同时BottomNavigationBar还是符合当前的Material Design标准的。效果展示依赖compile'com.ashokvarma.andro
2023-05-30

Android实现顶部底部双导航界面功能

最近想弄一个双导航功能,查看了许多资料,总算是实现了功能,这边就算是给自己几个笔记吧! 先来看看效果 那么就开始实现了! 底部导航栏我选择用FragmentTabHost+Fragment来实现,这个方法我觉得挺好用的,代码量也不多 首先是
2022-06-06

Android实现底部导航栏功能(选项卡)

现在很多android的应用都采用底部导航栏的功能,这样可以使得用户在使用过程中随意切换不同的页面,现在我采用TabHost组件来自定义一个底部的导航栏的功能。 我们先看下该demo实例的框架图:其中各个类的作用以及资源文件就不详细解释了,
2022-06-06

FragmentTabHost FrameLayout实现底部导航栏

app经常用到底部导航栏,早前使用过RadioGroup+FrameLayout实现或者RadioGroup+ViewPager实现,现在基本使用FragmentTabHost+FrameLayout来实现,因为使用起来简单易用。下面写一个
2023-05-31

Android 底部导航控件实例代码

一、先给大家展示下最终效果通过以上可以看到,图一是简单的使用,图二、图三中为结合ViewPager共同使用,而且都可以随ViewPager的滑动渐变色,不同点是图二为选中非选中两张图片,图三的选中非选中是一张图片只是做了颜色变化。二、 需求
2022-06-06

编程热搜

  • Android:VolumeShaper
    VolumeShaper(支持版本改一下,minsdkversion:26,android8.0(api26)进一步学习对声音的编辑,可以让音频的声音有变化的播放 VolumeShaper.Configuration的三个参数 durati
    Android:VolumeShaper
  • Android崩溃异常捕获方法
    开发中最让人头疼的是应用突然爆炸,然后跳回到桌面。而且我们常常不知道这种状况会何时出现,在应用调试阶段还好,还可以通过调试工具的日志查看错误出现在哪里。但平时使用的时候给你闹崩溃,那你就欲哭无泪了。 那么今天主要讲一下如何去捕捉系统出现的U
    Android崩溃异常捕获方法
  • android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
    系统的设置–>电池–>使用情况中,统计的能耗的使用情况也是以power_profile.xml的value作为基础参数的1、我的手机中power_profile.xml的内容: HTC t328w代码如下:
    android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
  • Android SQLite数据库基本操作方法
    程序的最主要的功能在于对数据进行操作,通过对数据进行操作来实现某个功能。而数据库就是很重要的一个方面的,Android中内置了小巧轻便,功能却很强的一个数据库–SQLite数据库。那么就来看一下在Android程序中怎么去操作SQLite数
    Android SQLite数据库基本操作方法
  • ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
    工作的时候为了方便直接打开编辑文件,一些常用的软件或者文件我们会放在桌面,但是在ubuntu20.04下直接直接拖拽文件到桌面根本没有效果,在进入桌面后发现软件列表中的软件只能收藏到面板,无法复制到桌面使用,不知道为什么会这样,似乎并不是很
    ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
  • android获取当前手机号示例程序
    代码如下: public String getLocalNumber() { TelephonyManager tManager =
    android获取当前手机号示例程序
  • Android音视频开发(三)TextureView
    简介 TextureView与SurfaceView类似,可用于显示视频或OpenGL场景。 与SurfaceView的区别 SurfaceView不能使用变换和缩放等操作,不能叠加(Overlay)两个SurfaceView。 Textu
    Android音视频开发(三)TextureView
  • android获取屏幕高度和宽度的实现方法
    本文实例讲述了android获取屏幕高度和宽度的实现方法。分享给大家供大家参考。具体分析如下: 我们需要获取Android手机或Pad的屏幕的物理尺寸,以便于界面的设计或是其他功能的实现。下面就介绍讲一讲如何获取屏幕的物理尺寸 下面的代码即
    android获取屏幕高度和宽度的实现方法
  • Android自定义popupwindow实例代码
    先来看看效果图:一、布局
  • Android第一次实验
    一、实验原理 1.1实验目标 编程实现用户名与密码的存储与调用。 1.2实验要求 设计用户登录界面、登录成功界面、用户注册界面,用户注册时,将其用户名、密码保存到SharedPreference中,登录时输入用户名、密码,读取SharedP
    Android第一次实验

目录