android fragment 底部菜单栏,一句话搞定Android底部导航栏,一键绑定Fragment、ViewPager...

现在大多数App都会用到底部导航栏,比如常见的聊天工具QQ、微信、购物App等等,有了底部导航栏,用户可以随时切换界面,查看不同的内容。它的实现方式也很多,以前大多使用TabHost来实现,但是现在我们有很多更好的选择。

常见的底部导航栏实现方式:

1.使用LinearLayout + TextView实现了底部导航栏的效果

2.使用RadioGroup + RadioButton实现了底部导航栏的效果

3.利用BottomNavigationBar实现底部导航栏

.......

实现方式有很多,不过好像都只是关于下边Tab切换而已,没有实现Tab与界面的联动,用的时候还要自己手写这部分代码,麻烦不麻烦?

作为一名注定要改变世界的程序猿,你让我天天写这个?这是不能忍的。

1dd8092d85f4

更高,更快,更强

就不能有个东西,能够一句话搞定Android底部导航栏,一键绑定Fragment、ViewPager吗?

所以,这个BottomTabBar产生了。GitHub项目地址

先来看下效果:

1dd8092d85f4

简陋的演示.gif

How to use:

1dd8092d85f4

1dd8092d85f4

Step 1. Add the JitPack repository to your build file

Add it in your root build.gradle at the end of repositories:

allprojects {

repositories {

...

maven { url 'https://jitpack.io' }

}

}

Step 2. Add the dependency

dependencies {

compile 'com.github.zhaolei9527:UseBottomTabBar:v1.0.4'

}

XML布局文件代码:

android:id="@+id/BottomTabBar"

android:layout_width="match_parent"

android:layout_height="wrap_content"

>

控件可设置参数:

参数名

描述

tab_bar_background

BottomTabBar的整体背景颜色

tab_img_width

图片宽度

tab_img_height

图片高度

tab_font_size

文字尺寸

tab_img_font_padding

图片文字间隔

tab_padding_top

上边距

tab_padding_bottom

下边距

tab_isshow_divider

是否显示分割线

tab_divider_height

分割线高度

tab_divider_background

分割线背景

tab_selected_color

选中的颜色

tab_unselected_color

未选中的颜色

Activity文件代码:

导包:import sakura.bottomtabbar.BottomTabBar;

绑定Fragment的:(一句话搞定有木有?)

BottomTabBar.initFragmentorViewPager(getSupportFragmentManager())

.addReplaceLayout(R.id.fl_content)

.addTabItem("草莓", getResources().getDrawable(R.mipmap.icon01), getResources().getDrawable(R.mipmap.icon_round), FragmentA.class)

.addTabItem("凤梨", getResources().getDrawable(R.mipmap.icon02), getResources().getDrawable(R.mipmap.icon_round), FragmentB.class)

.addTabItem("樱桃", getResources().getDrawable(R.mipmap.icon03), getResources().getDrawable(R.mipmap.icon_round), FragmentC.class)

.addTabItem("香蕉", getResources().getDrawable(R.mipmap.icon04), getResources().getDrawable(R.mipmap.icon_round), FragmentD.class)

.commit();

绑定ViewPager的:(一句话搞定有木有?)

BottomTabBar.initFragmentorViewPager(viewpager)

.setChangeColor(getResources().getColor(R.color.colorAccent), getResources().getColor(R.color.colorPrimary))

.addTabItem("草莓", getResources().getDrawable(R.mipmap.icon01), getResources().getDrawable(R.mipmap.icon_round))

.addTabItem("凤梨", getResources().getDrawable(R.mipmap.icon02), getResources().getDrawable(R.mipmap.icon_round))

.addTabItem("樱桃", getResources().getDrawable(R.mipmap.icon03), getResources().getDrawable(R.mipmap.icon_round))

.addTabItem("香蕉", getResources().getDrawable(R.mipmap.icon04), getResources().getDrawable(R.mipmap.icon_round))

.commit();

代码可配置参数方法:

参数名

描述

setImgSize

设置图片的尺寸

setFontSize

设置文字的尺寸

setTabPadding

设置Tab的padding值

setChangeColor

设置选中未选中的颜色

setTabBarBackgroundColor

设置BottomTabBar的整体背景颜色

setTabBarBackgroundResource

设置BottomTabBar的整体背景图片

isShowDivider

是否显示分割线

setDividerHeight

设置分割线的高度

setDividerColor

设置分割线的颜色

很简单,对不对,你想干什么,我都替你干。

划重点,这个initFragmentorViewPager ( getSupportFragmentManager() | ViewPager)方法一定要第一个调用,没有这个初始化,后边什么也做不了。

另外,上述实例的addTabItem是支持选中状态图片切换的方法,在此之外,还支持不需要切换图片的模式。

/**

* 添加TabItem

* @param name 文字

* @param imgId 图片id

* @return

*/

public BottomTabBar addTabItem(String name, int imgId){...}

/**

* 添加TabItem

* @param name 文字

* @param imgId 图片id

* @param Fragmentclazz Fragment类

* @return

*/

public BottomTabBar addTabItem(String name, int imgId, Class Fragmentclazz){...}

另外,考虑到在底部导航栏点击切换界面的需求之外的其他需求,BottomTabBar提供了点击事件的回调。

((BottomTabBar) findViewById(R.id.BottomTabBar))

.initFragmentorViewPager(getSupportFragmentManager())

.addReplaceLayout(R.id.fl_content)

.addTabItem("草莓", getResources().getDrawable(R.mipmap.icon01), getResources().getDrawable(R.mipmap.icon_round), FragmentA.class)

.addTabItem("凤梨", getResources().getDrawable(R.mipmap.icon02), getResources().getDrawable(R.mipmap.icon_round), FragmentB.class)

.addTabItem("樱桃", getResources().getDrawable(R.mipmap.icon03), getResources().getDrawable(R.mipmap.icon_round), FragmentC.class)

.addTabItem("香蕉", getResources().getDrawable(R.mipmap.icon04), getResources().getDrawable(R.mipmap.icon_round), FragmentD.class)

.setOnTabChangeListener(new BottomTabBar.OnTabChangeListener() {

@Override

public void onTabChange(int position, View V) {

Toast.makeText(FragmentActivity.this, "position:" + position, Toast.LENGTH_SHORT).show();

}

})

.commit();

项目代码概览:

获取xml配置样式 :

public BottomTabBar(Context context, AttributeSet attrs) {

super(context, attrs);

this.context = context;

TypedArray attributes = context.obtainStyledAttributes(attrs, R.styleable.BottomTabBar);

if (attributes != null) {

//图片宽度

imgWidth = attributes.getDimension(R.styleable.BottomTabBar_tab_img_width, dp2px(30));

//图片高度

imgHeight = attributes.getDimension(R.styleable.BottomTabBar_tab_img_height, dp2px(30));

//文字尺寸

fontSize = attributes.getDimension(R.styleable.BottomTabBar_tab_font_size, 14);

//上边距

paddingTop = attributes.getDimension(R.styleable.BottomTabBar_tab_padding_top, dp2px(2));

//图片文字间隔

fontImgPadding = attributes.getDimension(R.styleable.BottomTabBar_tab_img_font_padding, dp2px(3));

//下边距

paddingBottom = attributes.getDimension(R.styleable.BottomTabBar_tab_padding_bottom, dp2px(5));

//分割线高度

dividerHeight = attributes.getDimension(R.styleable.BottomTabBar_tab_divider_height, dp2px(1));

//是否显示分割线

isShowDivider = attributes.getBoolean(R.styleable.BottomTabBar_tab_isshow_divider, false);

//选中的颜色

selectColor = attributes.getColor(R.styleable.BottomTabBar_tab_selected_color, Color.parseColor("#F1453B"));

//未选中的颜色

unSelectColor = attributes.getColor(R.styleable.BottomTabBar_tab_unselected_color, Color.parseColor("#626262"));

//BottomTabBar的整体背景

tabBarBackgroundColor = attributes.getColor(R.styleable.BottomTabBar_tab_bar_background, Color.parseColor("#FFFFFF"));

//分割线背景

dividerBackgroundColor = attributes.getColor(R.styleable.BottomTabBar_tab_divider_background, Color.parseColor("#CCCCCC"));

attributes.recycle();

}

}

初始化View :

private void initView() {

mLayout = (LinearLayout) LayoutInflater.from(context).inflate(R.layout.bottom_tab_bar, null);

LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.MATCH_PARENT);

mLayout.setLayoutParams(layoutParams);

mLayout.setBackgroundColor(tabBarBackgroundColor);

addView(mLayout);

mDivider = mLayout.findViewById(R.id.mDivider);

mTabContent = (LinearLayout) mLayout.findViewById(R.id.mTabContent);

if (isShowDivider) {

LayoutParams dividerParams = new LayoutParams(LayoutParams.MATCH_PARENT, (int) dividerHeight);

mDivider.setLayoutParams(dividerParams);

mDivider.setBackgroundColor(dividerBackgroundColor);

mDivider.setVisibility(VISIBLE);

} else {

mDivider.setVisibility(GONE);

}

}

ViewPager模式添加Tab :

public BottomTabBar addTabItem(final String name, Drawable selectdrawable, Drawable unselectdrawable) {

selectdrawableList.add(selectdrawable);

unselectdrawableList.add(unselectdrawable);

LinearLayout TabItem = (LinearLayout) View.inflate(context, R.layout.tab_item, null);

TabItem.setGravity(Gravity.CENTER);

//设置TabItem标记

TabItem.setTag(name);

//添加标记至集合以作辨别

tabIdList.add(String.valueOf(TabItem.getTag()));

TabItem.setOnClickListener(this);

//Tab图片样式及内容设置

ImageView tab_item_img = (ImageView) TabItem.findViewById(R.id.tab_item_img);

tab_item_imgparams = new LayoutParams((int) imgWidth, (int) imgHeight);

tab_item_imgparams.topMargin = (int) paddingTop;

tab_item_imgparams.bottomMargin = (int) fontImgPadding;

tab_item_img.setLayoutParams(tab_item_imgparams);

//Tab文字样式及内容设置

TextView tab_item_tv = (TextView) TabItem.findViewById(R.id.tab_item_tv);

tab_item_tvparams = new LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);

tab_item_tvparams.bottomMargin = (int) paddingBottom;

tab_item_tv.setLayoutParams(tab_item_tvparams);

tab_item_tv.setTextSize(fontSize);

tab_item_tv.setText(name);

if (tabIdList.size() == 1) {

tab_item_tv.setTextColor(selectColor);

tab_item_img.setBackground(selectdrawable);

} else {

tab_item_tv.setTextColor(unSelectColor);

tab_item_img.setBackground(unselectdrawable);

}

TabItem.setLayoutParams(new LinearLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT, 1.0f));

mTabContent.addView(TabItem);

return this;

}

Fragment模式添加Tab :

public BottomTabBar addTabItem(final String name, Drawable selectdrawable, Drawable unselectdrawable, Class fragmentClass) {

selectdrawableList.add(selectdrawable);

unselectdrawableList.add(unselectdrawable);

Class> clazz = null;

try {

clazz = Class.forName(fragmentClass.getName());

Fragment fragment = (Fragment) clazz.newInstance();

} catch (Exception e) {

e.printStackTrace();

}

FragmentList.add(fragmentClass);

LinearLayout TabItem = (LinearLayout) View.inflate(context, R.layout.tab_item, null);

TabItem.setGravity(Gravity.CENTER);

//设置TabItem标记

TabItem.setTag(name);

//添加标记至集合以作辨别

tabIdList.add(String.valueOf(TabItem.getTag()));

TabItem.setOnClickListener(this);

//Tab图片样式及内容设置

ImageView tab_item_img = (ImageView) TabItem.findViewById(R.id.tab_item_img);

tab_item_imgparams = new LayoutParams((int) imgWidth, (int) imgHeight);

tab_item_imgparams.topMargin = (int) paddingTop;

tab_item_imgparams.bottomMargin = (int) fontImgPadding;

tab_item_img.setLayoutParams(tab_item_imgparams);

//Tab文字样式及内容设置

TextView tab_item_tv = (TextView) TabItem.findViewById(R.id.tab_item_tv);

tab_item_tvparams = new LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);

tab_item_tvparams.bottomMargin = (int) paddingBottom;

tab_item_tv.setLayoutParams(tab_item_tvparams);

tab_item_tv.setTextSize(fontSize);

tab_item_tv.setText(name);

if (tabIdList.size() == 1) {

tab_item_tv.setTextColor(selectColor);

tab_item_img.setBackground(selectdrawable);

} else {

tab_item_tv.setTextColor(unSelectColor);

tab_item_img.setBackground(unselectdrawable);

}

TabItem.setLayoutParams(new LinearLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT, 1.0f));

mTabContent.addView(TabItem);

return this;

}

Fragment切换处理 :

private void relaceFrament(int i) {

Class aClass = FragmentList.get(i);

Class> clazz = null;

try {

clazz = Class.forName(aClass.getName());

Fragment Fragment = (Fragment) clazz.newInstance();

android.support.v4.app.FragmentTransaction fragmentTransaction = mFragmentManager.beginTransaction();

fragmentTransaction.replace(mReplaceLayout, Fragment);

fragmentTransaction.commit();

} catch (Exception e) {

e.printStackTrace();

}

}

Tab点击事件处理 :

@Override

public void onClick(View v) {

for (int i = 0; i < tabIdList.size(); i++) {

if (tabIdList.get(i).equals(v.getTag())) {

if (mViewpager != null) {

//绑定ViewPager

mViewpager.setCurrentItem(i);

}

if (mFragmentManager != null) {

if (mReplaceLayout == 0) {

throw new IllegalStateException(

"Must input ReplaceLayout of mReplaceLayout");

}

relaceFrament(i);

changeTab(i);

}

//绑定点击监听回调

listener.onTabChange(i, v);

}

}

}

Tab选中更改样式 :

private void changeTab(int position) {

if (position + 1 > mTabContent.getChildCount()) {

throw new IndexOutOfBoundsException("onPageSelected:" + (position + 1) +

",of Max mTabContent ChildCount:" + mTabContent.getChildCount());

}

for (int i = 0; i < mTabContent.getChildCount(); i++) {

View TabItem = mTabContent.getChildAt(i);

if (i == position) {

((TextView) TabItem.findViewById(R.id.tab_item_tv)).setTextColor(selectColor);

if (!selectdrawableList.isEmpty())

TabItem.findViewById(R.id.tab_item_img).setBackground(selectdrawableList.get(i));

} else {

((TextView) TabItem.findViewById(R.id.tab_item_tv)).setTextColor(unSelectColor);

if (!selectdrawableList.isEmpty())

TabItem.findViewById(R.id.tab_item_img).setBackground(unselectdrawableList.get(i));

}

}

}

总结

代码整体满足了一句话搞定Android底部导航栏,一键绑定Fragment、ViewPager的功能,当然,

有了需求才有了功能,有了想法才有了创作,你的反馈会是使我进步的最大动力。

觉得还不够方便?还想要什么功能?告诉我!欢迎反馈,欢迎Star。源码入口:UseBottomTabBar-GitHub项目地址

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/465155.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Http协议之报文·方法·状态码

【要点】 1. HTTP协议的主要特点2. HTTP报文的组成部分3. HTTP方法4. POST 和 GET的区别5. HTTP状态码【总结】HTTP协议的主要特点 主要特点&#xff1a;简单快速&#xff0c; 灵活&#xff0c; 无连接&#xff08;非keep-alive&#xff09;&#xff0c;无状态 每个资源URI是固…

MyEclipse 深色主题

Eclipse 是不支持主题的&#xff0c;不过可以通过导入导出perference文件来实现修改文本编辑器配色。 这里是一个深色主题&#xff0c;抓个图给大家看看&#xff1a; 下载地址&#xff1a;http://blog.codefront.net/2006/09/28/vibrant-ink-textmate-theme-for-eclipse/ 这里还…

深入理解嵌入式中重要的编程模型

大家好&#xff0c;我是写代码的篮球球痴。今天我们看一看业界一些著名的编程模型。背景模型是对事物共性的抽象&#xff0c;编程模型就是对编程的共性的抽象。什么是编程的共性呢&#xff1f;最重要的共性就是&#xff1a;程序设计时&#xff0c;代码的抽象方式、组织方式或复…

android v4包自动导入吧,android如何导入v4包的源码

1.我们导入v4包源码却发现没有导入按钮当我们调用android-support-v4.jar里面的控件的时候(这里以android.support.v4.view.ViewPager举例说明)&#xff0c;很多时候还需要查看此控件的源码&#xff0c;我们按住Ctrl键点击如下图中的ViewPager之后会出现如下提示出现这个问题的…

【floyd】【bitset】洛谷 P1841 [JSOI2007]重要的城市 题解

bitset玄学完美优化复杂度&#xff1f; 题目描述 参加jsoi冬令营的同学最近发现&#xff0c;由于南航校内修路截断了原来通向计算中心的路&#xff0c;导致去的路程比原先增加了近一公里。而食堂门前施工虽然也截断了原来通向计算中心的路&#xff0c;却没有使路程增加&#xf…

新风口下:嵌入式AI学习中较好的练手项目(附代码资料/学习视频/学习规划)...

有粉丝问我&#xff1a;“当前乃至未来5-10年&#xff0c;嵌入式开发者还有哪些风口&#xff1f;”画外音&#xff1a;风口的本质&#xff0c;其实就是一段时间的人才供需不平衡。说白了就是由于行业突变&#xff0c;敏锐的资本快速进入&#xff0c;导致短时间内行业大量扩张&a…

Windows 任务栏缩略图自定义程序[更新 Build20100830]

很久没有写一点小玩意儿了&#xff0c;今天终于有了一次机会。这个程序能够对 Windows 7 中的任务栏实时预览缩略图进行一系列个性化的调整&#xff0c;使其使用起来更炫更方便&#xff0c;避免了不方便的注册表修改操作&#xff0c;将其转化为方便图形界面&#xff0c;只需要点…

我接的是地啊,不,你接的是土!

作者&#xff1a;晓宇&#xff0c;排版&#xff1a;晓宇微信公众号&#xff1a;芯片之家&#xff08;ID&#xff1a;chiphome-dy&#xff09;1、我接地了啊&#xff0c;电子设计中&#xff0c;接地是非常重要的&#xff0c;地可不等于土&#xff0c;哈哈&#xff0c;有效的接地…

邻接矩阵-建立图

1.介绍图的相关概念 图是由顶点的有穷非空集和一个描述顶点之间关系-边&#xff08;或者弧&#xff09;的集合组成。通常&#xff0c;图中的数据元素被称为顶点&#xff0c;顶点间的关系用边表示&#xff0c;图通常用字母G表示&#xff0c;图的顶点通常用字母V表示&#xff0c;…

Busybox 制作文件系统并用 Qemu 启动编译的内核镜像

编译内核操作&#xff1a;https://blog.csdn.net/assiduous_me/article/details/120938556安装Busybox操作&#xff1a;https://blog.csdn.net/assiduous_me/article/details/120939319syzDESKTOP-B10G93S:~$ ls -l total 20 drwxr-xr-x 44 syz syz 4096 Oct 26 22:05 busybox …

深入浅出Win32多线程程序设计之线程通信

简介  线程之间通信的两个基本问题是互斥和同步。  线程同步是指线程之间所具有的一种制约关系&#xff0c;一个线程的执行依赖另一个线程的消息&#xff0c;当它没有得到另一个线程的消息时应等待&#xff0c;直到消息到达时才被唤醒。  线程互斥是指对于共享的操作系统…

Kafka Producer源码简述

接着上文kafka的简述&#xff0c;这一章我们一探kafka生产者是如何发送消息到消息服务器的。 代码的入口还是从 kafkaTemplate.send开始 最终我们就会到 org.springframework.kafka.core.KafkaTemplate#doSend方法 这里的关键就是 org.apache.kafka.clients.producer.Producer#…

原来搞单片机也可以面向对象

摘要&#xff1a;在看别人单片机程序时&#xff0c;你也许是奔溃的&#xff0c;因为全局变量满天飞&#xff0c;不知道哪个在哪用了&#xff0c;哪个表示什么&#xff0c;而且编写极其不规范。自己写单片机程序时&#xff0c;也许你也是奔溃的。总感觉重新开启一个项目&#xf…

雅虎年底升级IPv6标准 100万用户恐受影响

雅虎年底升级IPv6标准 100万用户恐受影响 http://network.51cto.com 2011-01-20 17:34 佚名 cnBeta 我要评论(0) 据国外媒体报道&#xff0c;雅虎计划今年年底将主站点Yahoo.com升级为IPv6标准&#xff0c;此举可能会使约100万用户在初期无法访问雅虎站点。据国外媒体报道&…

Linux v4l2框架分析

背景说明&#xff1a;Kernel版本&#xff1a;4.14ARM64处理器&#xff0c;Contex-A53&#xff0c;双核使用工具&#xff1a;Source Insight 3.5&#xff0c; Visio1. 概述V4L2(Video for Linux 2)&#xff1a;Linux内核中关于视频设备驱动的框架&#xff0c;对上向应用层提供统…

JAVA自学笔记23

JAVA自学笔记23 1、多线程 1&#xff09;引入&#xff1a; 2&#xff09;进程 是正在运行的程序。是系统进行资源分配和调用的独立单位。每一个进程都有它自己的内存空间和系统资源。 多进程&#xff1a; 单进程的计算机只能做一件事情&#xff0c;而现在的计算机都可以做…

上午写了一段代码,下午就被开除了~

俗话说得好&#xff0c;“代码写的少&#xff0c;离职少不了”。最近畅游互联网&#xff0c;发现一些离职小技巧&#xff0c;读后&#xff0c;内心被深深地打动了……但是&#xff0c;细细品过之后&#xff0c;发现对我们程序员不太适用了。例如&#xff1a;领导夹菜你转桌&…

nginx加载html目录下图片,nginx配置访问图片路径以及html静态页面的调取方法

nginx配置访问图片路径以及html静态页面的调取方法发布时间&#xff1a;2017-03-09 12:06来源&#xff1a;互联网当前栏目&#xff1a;web技术类给大家讲一个快速配置nginx访问图片地址&#xff0c;以及访问html静态页面的配置。1.实验环境首先随便某个路径下创建相应的目录。如…

微信小程序继续入坑指南

微信小程序继续入坑指南 wxml 类似于html 感觉和ejs灰常的相似 数据绑定 js Page({data: {message: "hello world"} })wxml <view>{{message}}</view> 使用的是https://mustache.github.io/模板引擎系统 对组件的属性和控制属性的更改 <view id"…

思科收购网络安全管理厂商Pari Networks

思科收购网络安全管理厂商Pari Networkshttp://netsecurity.51cto.com 2011-01-28 09:39 胡杨 译 网界网 我要评论(0)摘要&#xff1a;思科本星期宣布&#xff0c;它打算收购私营企业Pari Networks。这个企业是前思科工程师创建的&#xff0c;主要提供网络配置、变更和合规…