我的Android之路——底部菜单栏的实现
底部菜单栏的实现
底部菜单栏两种实现方法:ViewPager:可滑动的界面;Fragment:固定的界面。
首先,页面布局,在除去顶部toolbar之后,将主界面分为两部分,一部分为界面显示区,另一部分作为底部菜单栏。
xml布局文件:content_main.xml(主页面除去toolbar后剩余部分)
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"> <FrameLayout
android:id="@+id/fl_content"
android:layout_width="match_parent"
android:background="#ffffff"
android:layout_height="0dp"
android:layout_weight="1">
</FrameLayout> <include layout="@layout/activity_bottom"/>
</LinearLayout>
activity_bottom.xml(底部菜单栏布局,将菜单栏分为两部分,图片和文字)
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
> <LinearLayout
android:id="@+id/ll_home"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:orientation="vertical" > <ImageView
android:id="@+id/iv_home"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/tab_home_pressed" /> <TextView
android:id="@+id/tv_home"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="3dp"
android:text="首页"
android:textColor="#1B940A"
android:textStyle="bold" />
</LinearLayout> <LinearLayout
android:id="@+id/ll_find"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:orientation="vertical" > <ImageView
android:id="@+id/iv_find"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/tab_find_normal" /> <TextView
android:id="@+id/tv_find"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="3dp"
android:text="发现"
android:textColor="#ffffff"
android:textStyle="bold" />
</LinearLayout> <LinearLayout
android:id="@+id/ll_recommend"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:orientation="vertical" > <ImageView
android:id="@+id/iv_recommend"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/tab_recommend_normal" /> <TextView
android:id="@+id/tv_recommend"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="3dp"
android:text="推荐"
android:textColor="#ffffff"
android:textStyle="bold" />
</LinearLayout> <LinearLayout
android:id="@+id/ll_discuss"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:orientation="vertical" > <ImageView
android:id="@+id/iv_discuss"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/tab_discuss_normal" /> <TextView
android:id="@+id/tv_discuss"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="3dp"
android:text="讨论"
android:textColor="#ffffff"
android:textStyle="bold" />
</LinearLayout> </LinearLayout>
home.xml(四个Fragment页面的主页面布局,其他类似)
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"> <ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"> </LinearLayout>
</ScrollView>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="我是首页"
android:textSize="30dp" /> </RelativeLayout>
HomeFragment(Fragment的java文件,可实现对应页面的功能,此处只列出一个)
package com.example.liu.cakeapp; import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup; /**
* Created by lenovo on 2016/9/8.
*/
public class HomeFragment extends Fragment {
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle saveInstanceState){
return inflater.inflate(R.layout.home,container,false);
}
}
MainActivity
package com.example.liu.cakeapp; import android.app.SearchManager;
import android.content.Context;
import android.os.Bundle;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.Snackbar;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentTransaction;
import android.support.v7.widget.SearchView;
import android.view.View;
import android.support.design.widget.NavigationView;
import android.support.v4.view.GravityCompat;
import android.support.v4.widget.DrawerLayout;
import android.support.v7.app.ActionBarDrawerToggle;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView; public class MainActivity extends AppCompatActivity
implements NavigationView.OnNavigationItemSelectedListener , View.OnClickListener { //底部菜单四个LinearLayout
private LinearLayout ll_home;
private LinearLayout ll_find;
private LinearLayout ll_recommend;
private LinearLayout ll_discuss; //底部菜单四个ImageView
private ImageView iv_home;
private ImageView iv_find;
private ImageView iv_recommend;
private ImageView iv_discuss; //底部菜单四个菜单标题
private TextView tv_home;
private TextView tv_find;
private TextView tv_recommend;
private TextView tv_discuss; //四个Fragment
private Fragment homeFragment;
private Fragment findFragment;
private Fragment recommendFragment;
private Fragment discussFragment; @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar); //初始化控件
initView();
// 初始化底部按钮事件
initEvent();
// 初始化并设置当前Fragment
initFragment(0); FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
fab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG)
.setAction("Action", null).show();
}
}); DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
drawer.setDrawerListener(toggle);
toggle.syncState(); NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view);
navigationView.setNavigationItemSelectedListener(this);
} @Override
public void onBackPressed() {
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
if (drawer.isDrawerOpen(GravityCompat.START)) {
drawer.closeDrawer(GravityCompat.START);
} else {
super.onBackPressed();
}
} @Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu); SearchManager searchManager=(SearchManager)getSystemService(Context.SEARCH_SERVICE);
SearchView searchView=(SearchView)menu.findItem(R.id.toolbar_search).getActionView();
searchView.setSearchableInfo(searchManager.getSearchableInfo(getComponentName())); return true;
} @Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId(); //noinspection SimplifiableIfStatement
if (id == R.id.event) {
return true;
}else if(id == R.id.jump)
{
return true;
}else if(id == R.id.event)
{
return true;
}else if(id == R.id.event)
{
return true;
} return super.onOptionsItemSelected(item);
} @SuppressWarnings("StatementWithEmptyBody")
@Override
public boolean onNavigationItemSelected(MenuItem item) {
// Handle navigation view item clicks here.
int id = item.getItemId(); if (id == R.id.nav_camera) {
// Handle the camera action
} else if (id == R.id.nav_gallery) { } else if (id == R.id.nav_slideshow) { } else if (id == R.id.nav_manage) { } else if (id == R.id.nav_share) { } else if (id == R.id.nav_send) { } DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
drawer.closeDrawer(GravityCompat.START);
return true;
} private void initFragment(int index){
FragmentManager fragmentManager=getSupportFragmentManager();
FragmentTransaction transaction=fragmentManager.beginTransaction();
//隐藏所有Fragment
hideFragment(transaction);
switch(index){
case 0:
if(homeFragment == null){
homeFragment=new HomeFragment();
transaction.add(R.id.fl_content, homeFragment);
}else{
transaction.show(homeFragment);
}
break;
case 1:
if(findFragment == null){
findFragment=new FindFragment();
transaction.add(R.id.fl_content, findFragment);
}else{
transaction.show(findFragment);
}
break;
case 2:
if(recommendFragment == null){
recommendFragment=new RecommendFragment();
transaction.add(R.id.fl_content, recommendFragment);
}else{
transaction.show(recommendFragment);
}
break;
case 3:
if(discussFragment == null){
discussFragment=new DiscussFragment();
transaction.add(R.id.fl_content, discussFragment);
}else{
transaction.show(discussFragment);
}
break;
default:
break;
}
transaction.commit();
}
//隐藏Fragment
private void hideFragment(FragmentTransaction transaction) {
if (homeFragment != null) {
transaction.hide(homeFragment);
}
if (findFragment != null) {
transaction.hide(findFragment);
}
if (recommendFragment != null) {
transaction.hide(recommendFragment);
}
if (discussFragment != null) {
transaction.hide(discussFragment);
}
}
private void initEvent(){
ll_home.setOnClickListener(this);
ll_find.setOnClickListener(this);
ll_recommend.setOnClickListener(this);
ll_discuss.setOnClickListener(this);
} private void initView(){
this.ll_home=(LinearLayout)findViewById(R.id.ll_home);
this.ll_find=(LinearLayout)findViewById(R.id.ll_find);
this.ll_recommend=(LinearLayout)findViewById(R.id.ll_recommend);
this.ll_discuss=(LinearLayout)findViewById(R.id.ll_discuss); this.iv_home=(ImageView)findViewById(R.id.iv_home);
this.iv_find=(ImageView)findViewById(R.id.iv_find);
this.iv_recommend=(ImageView)findViewById(R.id.iv_recommend);
this.iv_discuss=(ImageView)findViewById(R.id.iv_discuss); this.tv_home=(TextView)findViewById(R.id.tv_home);
this.tv_find=(TextView)findViewById(R.id.tv_find);
this.tv_recommend=(TextView)findViewById(R.id.tv_recommend);
this.tv_discuss=(TextView)findViewById(R.id.tv_discuss);
} public void onClick(View v){
//在每次点击后将所有的底部按钮颜色改变为灰色,然后根据点击着色
restartBotton();
//ImageView和TetxView设置为绿色,页面随之跳转
switch (v.getId()){
case R.id.ll_home:
iv_home.setImageResource(R.drawable.tab_home_pressed);
tv_home.setTextColor(0xff1B940A);
initFragment(0);
break;
case R.id.ll_find:
iv_find.setImageResource(R.drawable.tab_find_pressed);
tv_find.setTextColor(0xff1B940A);
initFragment(1);
break;
case R.id.ll_recommend:
iv_recommend.setImageResource(R.drawable.tab_recommend_pressed);
tv_recommend.setTextColor(0xff1B940A);
initFragment(2);
break;
case R.id.ll_discuss:
iv_discuss.setImageResource(R.drawable.tab_discuss_pressed);
tv_discuss.setTextColor(0xff1B940A);
initFragment(3);
break;
default:
break;
}
}
public void restartBotton(){
iv_home.setImageResource(R.drawable.tab_home_normal);
iv_find.setImageResource(R.drawable.tab_find_normal);
iv_recommend.setImageResource(R.drawable.tab_recommend_normal);
iv_discuss.setImageResource(R.drawable.tab_discuss_normal); tv_home.setTextColor(0xffffffff);
tv_find.setTextColor(0xffffffff);
tv_recommend.setTextColor(0xffffffff);
tv_discuss.setTextColor(0xffffffff);
}
}
总结:
参考仿微信底部菜单栏实现底部菜单栏页面的切换,文件的布局相当清晰,对于功能的实现相对简单。
优点:
1、Fragment文件单独存在,各自页面的内容各自去实现完成,有自己的生命周期,便于后期维护。
2、对于需要手势操作的一些内容不会起冲突。
缺点:
1、界面不可滑动,比较死板。
我的Android之路——底部菜单栏的实现的更多相关文章
- 【Android UI设计与开发】5.底部菜单栏(二)使用Fragment实现底部菜单栏
既然 Fragment 取代了TabActivity,当然 TabActivity 的能实现的菜单栏,Fragment 当然也能实现.主要其实就是通过菜单栏的点击事件切换 Fragment 的显示和隐 ...
- 【Android开发笔记】底部菜单栏 FragmentTabHost
公司项目,需求本来是按照谷歌官方指南写的,菜单栏设计成在导航栏下方 结果呢,审评时,BOSS为了和iOS统一,改成了底部菜单栏(标准结局),我只能呵呵呵呵呵呵呵 查了查资料发现实现底部菜单栏用的是Fr ...
- android 底部菜单栏实现(转)
1.Android学习之BottomNavigationBar实现Android特色底部导航栏 2.Android底部导航栏的四种实现 3.Android BottomNavigationBar底部导 ...
- Android底部菜单栏+顶部菜单
底部菜单栏+顶部菜单(wechat)demo http://blog.csdn.net/evankaka/article/details/44121457 底部菜单demo http://blog.c ...
- 底部菜单栏(二) TabHost & RadioGroup 实现
需求:使用TabHost & RadioGroup实现底部菜单栏: 效果图: 实现分析: 1.目录结构: 代码实现: 1. activity_main.xml <?xml version ...
- 底部菜单栏(一) TabHost实现
需求:使用TabHost实现底部菜单栏: 效果图: 实现分析: 1.目录结构: 代码实现: 1.activity_main.xml <?xml version="1.0" e ...
- FragmentTabHost+FrameLayout实现底部菜单栏
现在一般的app都使用底部菜单栏,那具体怎么实现的呢!我们就来看看 首先给大家展示一下布局文件 1 <LinearLayout xmlns:android="http://schema ...
- 【重走Android之路】【番外篇】关于==和equals
[重走Android之路][番外篇]关于==和equals 在实际的编程当中,经常会使用==和equals来判断变量是否相同.但是这两种比较方式也常常让人搞得云里雾里摸不着头脑.下面是我个人做的总 ...
- 【重走Android之路】【番外篇】有关于null的一些知识点
[重走Android之路][番外篇]有关于null的一些知识点 1.首先,到底什么是null? null是Java中的一个关键字,用于表示一个空对象引用,但其本身并不是任何类型也不是属于任何对象. ...
随机推荐
- MATLAB用二分法、不动点迭代法及Newton迭代(切线)法求非线性方程的根
MATLAB用二分法.不动点迭代法及Newton迭代(切线)法求非线性方程的根 作者:凯鲁嘎吉 - 博客园http://www.cnblogs.com/kailugaji/ 一.实验原理 二.实验步骤 ...
- Spring MVC中自定义拦截器的简单示例
1. 引言 拦截器(Interceptor)实现对每一个请求处理前后进行相关的业务处理,类似于Servlet的Filter. 我们可以让普通的Bean实现HandlerIntercpetor接口或继承 ...
- for(var i=1;i<=3;i++){ setTimeout(function(){ console.log(i); },0); };答案:4 4 4。
看面试题时,发现了一道较为经典的面试题,代码如下 for(var i=1;i<=3;i++){ setTimeout(function(){ console.log(i); },0); }; / ...
- react redux学习之路
React 自学 chapter one React新的前端思维方式 React的首要思想是通过组件(Component)来开发应用.所谓组件,简单说,指的是能够完成某个特定功能的独立的.可重用的代码 ...
- UVA1103-Ancient Messages(脑洞+dfs)
Problem UVA1103-Ancient Messages Accept: 1176 Submit: 6103 Time Limit: 3000 mSec Problem Descriptio ...
- FileSaver.js 实现浏览器文件导出
FileSaver.js 实现浏览器文件导出 在浏览器中用 FileSaver.js 可以下载文件,不会造成文件直接打开等情况
- go标准库的学习-time
参考https://studygolang.com/pkgdoc 导入形式: import "time" time包提供了时间的显示和测量用的函数.日历的计算采用的是公历. 1&g ...
- select * 和select 所有字段的区别
文章取自http://blog.csdn.net/u014305991/article/details/44964171 MySQL 5.1.37 表记录数41,547,002,即4000w行 使用远 ...
- Matlab中要显示数学公式或符号Latex
\rho 代表 ρ, \sigma 代表 σ \alpha α \beta β \gamma γ \delta δ \epsilon ϵ \zeta ζ \eta ...
- 20175310 迭代和JDB
迭代和JDB 1 使用C(n,m)=C(n-1,m-1)+C(n-1,m)公式进行递归编程实现求组合数C(m,n)的功能 zuheshu.java文件夹下的代码: import java.util.S ...