Android实现底部导航栏功能

本文实例为大家分享了Android实现底部导航栏功能的具体代码,供大家参考,具体内容如下

实验效果:

(1)在drawable文件夹下新建tab_menu_bg.xml文件,具体代码如下:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
  <item android:state_selected="true">
    <shape>
      <solid android:color="@color/bg_gray"/>
    </shape>
  </item>
</selector>

(2)在drawable文件夹下新建tab_menu_text.xml文件,具体代码如下:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
  <item android:color="@color/text_green" android:state_selected="true"/>
  <item android:color="@color/text_black" />
</selector>

(3)在drawable文件夹下新建tab_menu_personal.xml文件,具体代码如下:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
  <item android:drawable="@mipmap/menu_personal_on" android:state_selected="true"/>
  <item android:drawable="@mipmap/menu_personal_off"/>
</selector>

(4)在drawable文件夹下新建tab_menu_send.xml文件,具体代码如下:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
  <item android:drawable="@mipmap/menu_send_on" android:state_selected="true"/>
  <item android:drawable="@mipmap/menu_send_off"/>
</selector>

(5)在drawable文件夹下新建tab_menu_list.xml文件,具体代码如下:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
  <item android:drawable="@mipmap/menu_send_on" android:state_selected="true"/>
  <item android:drawable="@mipmap/menu_send_off"/>
</selector> 

(6)在layout文件夹下的activity_main.xml中具体代码如下:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  android:id="@+id/activity_main"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  tools:context="com.bzu.fshiner.parttimejob.MainActivity">
  <RelativeLayout
    android:id="@+id/tab_title"
    android:layout_width="match_parent"
    android:layout_height="48dp">
    <TextView
      android:id="@+id/tv_top"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:gravity="center"
      android:textSize="18sp"
      android:textColor="@color/text_black"
      android:text="@string/tv_top"/>
    <View
      android:layout_width="match_parent"
      android:layout_height="2px"
      android:background="@color/text_black"
      android:layout_alignParentBottom="true"/>
  </RelativeLayout>
  <LinearLayout
    android:id="@+id/tab_menu"
    android:layout_width="match_parent"
    android:layout_height="56dp"
    android:orientation="horizontal"
    android:layout_alignParentBottom="true">
    <TextView
      android:id="@+id/tv_list"
      android:layout_width="0dp"
      android:layout_height="match_parent"
      android:layout_weight="1"
      android:drawablePadding="3dp"
      android:gravity="center"
      android:background="@drawable/tab_menu_bg"
      android:textColor="@drawable/tab_menu_text"
      android:drawableTop="@drawable/tab_menu_list"
      android:text="@string/tv_list"/>
    <TextView
      android:id="@+id/tv_send"
      android:layout_width="0dp"
      android:layout_height="match_parent"
      android:layout_weight="1"
      android:drawablePadding="3dp"
      android:gravity="center"
      android:background="@drawable/tab_menu_bg"
      android:textColor="@drawable/tab_menu_text"
      android:drawableTop="@drawable/tab_menu_send"
      android:text="@string/tv_send"/>
    <TextView android:id="@+id/tv_personal"
      android:layout_width="0dp"
      android:layout_height="match_parent"
      android:layout_weight="1"
      android:drawablePadding="3dp"
      android:gravity="center"
      android:background="@drawable/tab_menu_bg"
      android:textColor="@drawable/tab_menu_text"
      android:drawableTop="@drawable/tab_menu_personal"
      android:text="@string/tv_personal"/>
   </LinearLayout>
   <View
     android:id="@+id/div_tab_bar"
     android:layout_width="match_parent"
     android:layout_height="2px"
     android:layout_above="@id/tab_menu"/>
   <FrameLayout
     android:id="@+id/fragment_container"
     android:layout_width="match_parent"
     android:layout_height="match_parent"
     android:layout_below="@id/tab_title"
     android:layout_above="@id/tab_menu">
   </FrameLayout>
</RelativeLayout>

(7)在layout文件夹中新建first_fragment.xml文件,具体代码如下:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="match_parent"
  android:layout_height="match_parent">
  <TextView
    android:id="@+id/tv_content"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center"
    android:text="哈哈"
    android:textSize="20sp"/> 

</LinearLayout>

(8)在MainActivity中具体代码如下:

package com.bzu.fshiner.parttimejob; 

import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.FrameLayout;
import android.widget.TextView; 

public class MainActivity extends AppCompatActivity implements View.OnClickListener {
  private TextView tv_top;
  private TextView tv_list;
  private TextView tv_send;
  private TextView tv_personal;
  private FrameLayout fragment_container;
  private FirstFragment f1,f2,f3; 

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    //ui组件初始化与事件绑定
    tv_top=(TextView)this.findViewById(R.id.tv_top);
    tv_list=(TextView)this.findViewById(R.id.tv_list);
    tv_send=(TextView)this.findViewById(R.id.tv_send);
    tv_personal=(TextView)this.findViewById(R.id.tv_personal);
    fragment_container=(FrameLayout)findViewById(R.id.fragment_container);
    tv_list.setOnClickListener(this);
    tv_send.setOnClickListener(this);
    tv_personal.setOnClickListener(this);
  }
  //重置所有文本的选中状态
  public void selected(){
    tv_list.setSelected(false);
    tv_send.setSelected(false);
    tv_personal.setSelected(false);
  } 

  //隐藏所有的Fragment
  private void hideAllFragment(android.app.FragmentTransaction transaction) {
    if(f1!=null){
      transaction.hide(f1);
    }
    if(f2!=null){
      transaction.hide(f2);
    }
    if(f3!=null){
      transaction.hide(f3);
    }
  }
  @Override
  public void onClick(View view){
    android.app.FragmentTransaction transaction=getFragmentManager().beginTransaction();
    hideAllFragment(transaction);
    switch(view.getId()){
      case R.id.tv_list:
        selected();
        tv_list.setSelected(true);
        if(f1==null){
          f1 = new FirstFragment("第一个Fragment");
          transaction.add(R.id.fragment_container,f1);
        }else{
          transaction.show(f1);
        }
        break; 

      case R.id.tv_send:
        selected();
        tv_send.setSelected(true);
        if(f2==null){
          f2 = new FirstFragment("第2个Fragment");
          transaction.add(R.id.fragment_container,f2);
        }else{
          transaction.show(f2);
        }
        break; 

      case R.id.tv_personal:
        selected();
        tv_personal.setSelected(true);
        if(f3==null){
          f3 = new FirstFragment("第三个Fragment");
          transaction.add(R.id.fragment_container,f3);
        }else{
          transaction.show(f3);
        }
        break;
    }
    transaction.commit();
  } 

}

(9)创建类,类名为FistFragment,其中具体代码如下:

package com.bzu.fshiner.parttimejob; 

import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView; 

/**
 * Created by Administrator on 2017/5/9.
 */ 

public class FirstFragment extends Fragment {
  private String context;
  private TextView textView; 

  public FirstFragment(String context) {
    this.context = context;
  }
  public View onCreateView(LayoutInflater inflater, ViewGroup container,Bundle savedInstanceState){
    View view=inflater.inflate(R.layout.first_fragment,container,false);
    textView=(TextView)view.findViewById(R.id.tv_content);
    textView.setText(context);
    return view;
  }
} 

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • android实现底部导航栏

    底部导航栏我选择用FragmentTabHost+Fragment来实现,这个方法比较好用,代码量也不多 首先是开始的activity_main.xml <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_

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

    现在很多android的应用都采用底部导航栏的功能,这样可以使得用户在使用过程中随意切换不同的页面,现在我采用TabHost组件来自定义一个底部的导航栏的功能. 我们先看下该demo实例的框架图: 其中各个类的作用以及资源文件就不详细解释了,还有资源图片(在该Demo中借用了其它应用程序的资源图片)也不提供了,大家可以自行更换自己需要的资源图片.直接上各个布局文件或各个类的代码: 1. res/layout目录下的 maintabs.xml 源码: <?xml version="1.0&q

  • 微信小程序实战之仿android fragment可滑动底部导航栏(4)

    底部3-5个选项的底部导航栏,目前在移动端上是主流布局之一,因此腾讯官方特地做了,可以通过设置,就可以做出了一个底部的导航栏. 相关教程:微信小程序教程系列之设置标题栏和导航栏(7) 但是通过设置的这个底部的导航栏,功能上比较固定,它必须要设置与它对应的一个页面,而且并不能滑动. 在业务上,有时候会比较限制,并不能完全满足所需. 又例如早前有人拿着UI稿问我,这种广告轮播图的样式,在小程序能不能实现呢? 我当时没有想了下,还不是很确定,因为小程序的轮播图的那几个小点点实在比较普通,样式单一. 因

  • Android实现简单底部导航栏 Android仿微信滑动切换效果

    Android仿微信滑动切换最终实现效果: 大体思路: 1. 主要使用两个自定义View配合实现; 底部图标加文字为一个自定义view,底部导航栏为一个载体,根据需要来添加底部图标; 2. 底部导航栏的设置方法类似于TabLayout的关联,View需要创建关联方法,用来关联VIewPager; 3. 通过关联方法获取ViewPager实例后,根据ViewPager页面数创建底部导航栏的图标按钮; 代码实现: 1. 新建第一个自定义View, 图标 + 文字 的底部按钮; /** * 自定义控件

  • Android用Scroller实现一个可向上滑动的底部导航栏

    静静等了5分钟竟不知道如何写我这第一篇文章.每次都想好好的学习学习,有时间多敲敲代码,写几篇自己的文章.今天终于开始实行了,还是有点小激动的.哈哈! 好了废话就不多收了.我今天想实现的一个功能就是一个可以上滑底部菜单栏.为什么我会想搞这么个东西呢, 还是源于一年前,我们app 有这么个需求,当时百度也好谷歌也好,都没有找到想要的效果,其实很简单的一个效果.但是当时我也是真的太菜了,所有有关自定义的控件真的是不会,看别人的代码还好,真要是自己写,一点头绪都没有.因为我试着写了,真的不行啊.当时觉得

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

    在App中经常看到这样的tab底部导航栏 那么这种效果是如何实现,实现的方式有很多种,最常见的就是使用Fragment+RadioButton去实现.下面我们来写一个例子 首先我们先在activity_mian.xml定义布局,整个布局的外面是线性布局,上面是帧布局切换不同的Fragment,底下是RadioGroup嵌套的是RadioButton.代码如下所示: <?xml version="1.0" encoding="utf-8"?> <Li

  • Android中TabLayout+ViewPager 简单实现app底部Tab导航栏

    前言 在谷歌发布Android Design Support Library之前,app底部tab布局的实现方法就有很多种,其中有RadioGroup+FrameLayout.TabHost+Fragment.FragmentPagerAdapter+ViewPager等方法,虽然这些方法虽然能达到同样的效果,但我个人总觉得有些繁琐.然而,Google在2015的IO大会上,给开发者们带来了全新的Android Design Support Library,里面包含了许多新控件,这些新控件有许多

  • Android design包自定义tablayout的底部导航栏的实现方法

    以前做项目大多用的radiobutton,今天用tablayout来做一个tab切换页面的的效果. 实现的效果就是类似QQ.微信的页面间(也就是Fragment间)的切换.如图: 布局只要一个tablayout <android.support.design.widget.TabLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:id=&

  • 使用RadioButton+Fragment实现底部导航栏效果

    底部导航栏,在我们App项目中是非常常用!而且实现它的方式很多,今天我们就来使用RadioButton+Fragment实现底部导航栏! 下面就让我们动手吧,首先我们打开RadioButtonDemo这个项目,首先修改activity_main.xml文件如下: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.androi

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

    流行的应用的导航一般分为两种,一种是底部导航,一种是侧边栏. 说明 IDE:AS,Android studio; 模拟器:genymotion; 实现的效果,见下图. 具体实现 为了讲明白这个实现过程,我们贴出来的代码多一写,这样更方便理解 [最后还会放出完整的代码实现] .看上图的界面做的比较粗糙,但实现过程的骨架都具有了,想要更完美的设计,之后自行完善吧 ^0^. 布局 通过观察上述效果图,发现任意一个选项页面都有三部分组成: 顶部去除ActionBar后的标题栏: 中间一个Fragment

随机推荐