Android仿微信顶/底部菜单栏效果

本文要实现仿微信微信底部菜单栏+顶部菜单栏,采用ViewPage来做,每一个page对应一个XML,当手指在ViewPage左右滑动时,就相应显示不同的page(其实就是xml)并且同时改变底部菜单按钮的图片变暗或变亮,同时如果点击底部菜单按钮,左右滑动page(其实就是xml)并且改变相应按钮的亮度。

一、布局
1、顶部菜单布局,命名为top_layout.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="45dp"
 android:background="@drawable/title_bar" >
 <TextView
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_marginLeft="20dp"
  android:text="微信"
  android:layout_centerVertical="true"
  android:textColor="#ffffff"
  android:textSize="20sp"
  android:textStyle="bold"
  />
 <ImageButton
  android:id="@+id/top_add"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:background="@drawable/top_add"
  android:layout_centerVertical="true"
  android:layout_alignParentRight="true"
  />
  <ImageButton
  android:id="@+id/top_search"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:background="@drawable/top_search"
  android:layout_centerVertical="true"
  android:layout_toLeftOf="@id/top_add"
  />
</RelativeLayout>

效果:

2、底部菜单布局bottom_layout.xml

<?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="60dp"
 android:background="@drawable/bottom_bar"
 android:orientation="horizontal" > 

 <LinearLayout
  android:id="@+id/id_tab_weixin"
  android:layout_width="0dp"
  android:layout_height="match_parent"
  android:layout_weight="1"
  android:gravity="center"
  android:orientation="vertical" >
 <!-- android:clickable="false" 是为了防止ImageButton截取了触摸事件 ,这里事件要给它的上一级linearlayout-->
  <ImageButton
    android:id="@+id/id_tab_weixin_img"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:background="#00000000"
   android:clickable="false"
   android:src="@drawable/tab_weixin_pressed" /> 

  <TextView
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:text="微信"
   />
 </LinearLayout> 

 <LinearLayout
   android:id="@+id/id_tab_address"
  android:layout_width="0dp"
  android:layout_height="match_parent"
  android:layout_weight="1"
  android:gravity="center"
  android:orientation="vertical" > 

  <ImageButton
    android:id="@+id/id_tab_address_img"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:background="#00000000"
    android:clickable="false"
   android:src="@drawable/tab_address_normal" /> 

  <TextView
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:text="通讯录"
   />
 </LinearLayout> 

 <LinearLayout
  android:id="@+id/id_tab_frd"
  android:layout_width="0dp"
  android:layout_height="match_parent"
  android:layout_weight="1"
  android:gravity="center"
  android:orientation="vertical" > 

  <ImageButton
    android:id="@+id/id_tab_frd_img"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:background="#00000000"
    android:clickable="false"
   android:src="@drawable/tab_find_frd_normal" /> 

  <TextView
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:text="发现"
 />
 </LinearLayout> 

 <LinearLayout
  android:id="@+id/id_tab_settings"
  android:layout_width="0dp"
  android:layout_height="match_parent"
  android:layout_weight="1"
  android:gravity="center"
  android:orientation="vertical" > 

  <ImageButton
    android:id="@+id/id_tab_settings_img"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:background="#00000000"
   android:clickable="false"
   android:src="@drawable/tab_settings_normal" /> 

  <TextView
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:text="我"
   />
 </LinearLayout> 

</LinearLayout>

效果:

3、整体布局
将上面两个加到activity_main.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="match_parent"
 android:orientation="vertical" > 

 <include layout="@layout/top_layout" /> 

 <android.support.v4.view.ViewPager
  android:id="@+id/id_viewpage"
  android:layout_width="fill_parent"
  android:layout_height="0dp"
  android:layout_weight="1" >
 </android.support.v4.view.ViewPager>
" 

 <include layout="@layout/bottom_layout" /> 

</LinearLayout>

效果:

效果还可以,底下菜单栏是有背景的,有点儿白色的,所以看得不是很清,一来微信是选中的
4、定义ViewPage的四个布局
因为要用ViewPage要加四个page,每个page对应一个xml,所以这里定义四个xml.
tab01.xml

<?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="match_parent"
 android:gravity="center"
 android:orientation="vertical" >
  <TextView
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="这里是微信"
  android:layout_centerVertical="true"
  android:textColor="#000000"
  android:textSize="40sp"
  android:textStyle="bold"
  /> 

</LinearLayout>

效果:

tab02.xml

<?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="match_parent"
 android:gravity="center"
 android:orientation="vertical" >
  <TextView
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="这里是通讯录"
  android:layout_centerVertical="true"
  android:textColor="#000000"
  android:textSize="40sp"
  android:textStyle="bold"
  /> 

</LinearLayout>

效果:效果和上面一样,只是文字改了一下
tab03.xml

<?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="match_parent"
 android:gravity="center"
 android:orientation="vertical" >
  <TextView
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="这里是发现"
  android:layout_centerVertical="true"
  android:textColor="#000000"
  android:textSize="40sp"
  android:textStyle="bold"
  /> 

</LinearLayout>

效果:效果和上面一样,只是文字改了一下
tab04.xml

<?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="match_parent"
 android:gravity="center"
 android:orientation="vertical" >
  <TextView
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="这里是我"
  android:layout_centerVertical="true"
  android:textColor="#000000"
  android:textSize="40sp"
  android:textStyle="bold"
  /> 

</LinearLayout>

效果:效果和上面一样,只是文字改了一下
二、代码
1. MainActivity中把控件和ViewPage初始化

package com.example.tabexample; 

import java.util.ArrayList;
import java.util.List;
import android.os.Bundle;
import android.app.Activity;
import android.support.v4.view.PagerAdapter;
import android.support.v4.view.ViewPager;
import android.support.v4.view.ViewPager.OnPageChangeListener;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.view.Window;
import android.widget.ImageButton;
import android.widget.LinearLayout; 

public class MainActivity extends Activity implements
  android.view.View.OnClickListener { 

 private ViewPager mViewPager;// 用来放置界面切换
 private PagerAdapter mPagerAdapter;// 初始化View适配器
 private List<View> mViews = new ArrayList<View>();// 用来存放Tab01-04
 // 四个Tab,每个Tab包含一个按钮
 private LinearLayout mTabWeiXin;
 private LinearLayout mTabAddress;
 private LinearLayout mTabFrd;
 private LinearLayout mTabSetting;
 // 四个按钮
 private ImageButton mWeiXinImg;
 private ImageButton mAddressImg;
 private ImageButton mFrdImg;
 private ImageButton mSettingImg; 

 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  requestWindowFeature(Window.FEATURE_NO_TITLE);
  setContentView(R.layout.activity_main);
  initView();
  initViewPage();
  initEvent();
 } 

 private void initEvent() {
  mTabWeiXin.setOnClickListener(this);
  mTabAddress.setOnClickListener(this);
  mTabFrd.setOnClickListener(this);
  mTabSetting.setOnClickListener(this);
  mViewPager.setOnPageChangeListener(new OnPageChangeListener() {
   /**
   *ViewPage左右滑动时
   */
   @Override
   public void onPageSelected(int arg0) {
    int currentItem = mViewPager.getCurrentItem();
    switch (currentItem) {
    case 0:
      resetImg();
     mWeiXinImg.setImageResource(R.drawable.tab_weixin_pressed);
     break;
    case 1:
      resetImg();
     mAddressImg.setImageResource(R.drawable.tab_address_pressed);
     break;
    case 2:
      resetImg();
     mFrdImg.setImageResource(R.drawable.tab_find_frd_pressed);
     break;
    case 3:
      resetImg();
     mSettingImg.setImageResource(R.drawable.tab_settings_pressed);
     break;
    default:
     break;
    }
   } 

   @Override
   public void onPageScrolled(int arg0, float arg1, int arg2) { 

   } 

   @Override
   public void onPageScrollStateChanged(int arg0) { 

   }
  });
 } 

 /**
  * 初始化设置
  */
 private void initView() {
  mViewPager = (ViewPager) findViewById(R.id.id_viewpage);
  // 初始化四个LinearLayout
  mTabWeiXin = (LinearLayout) findViewById(R.id.id_tab_weixin);
  mTabAddress = (LinearLayout) findViewById(R.id.id_tab_address);
  mTabFrd = (LinearLayout) findViewById(R.id.id_tab_frd);
  mTabSetting = (LinearLayout) findViewById(R.id.id_tab_settings);
  // 初始化四个按钮
  mWeiXinImg = (ImageButton) findViewById(R.id.id_tab_weixin_img);
  mAddressImg = (ImageButton) findViewById(R.id.id_tab_address_img);
  mFrdImg = (ImageButton) findViewById(R.id.id_tab_frd_img);
  mSettingImg = (ImageButton) findViewById(R.id.id_tab_settings_img);
 } 

 /**
  * 初始化ViewPage
  */
 private void initViewPage() { 

  // 初妈化四个布局
  LayoutInflater mLayoutInflater = LayoutInflater.from(this);
  View tab01 = mLayoutInflater.inflate(R.layout.tab01, null);
  View tab02 = mLayoutInflater.inflate(R.layout.tab02, null);
  View tab03 = mLayoutInflater.inflate(R.layout.tab03, null);
  View tab04 = mLayoutInflater.inflate(R.layout.tab04, null); 

  mViews.add(tab01);
  mViews.add(tab02);
  mViews.add(tab03);
  mViews.add(tab04); 

  // 适配器初始化并设置
  mPagerAdapter = new PagerAdapter() { 

   @Override
   public void destroyItem(ViewGroup container, int position,
     Object object) {
    container.removeView(mViews.get(position)); 

   } 

   @Override
   public Object instantiateItem(ViewGroup container, int position) {
    View view = mViews.get(position);
    container.addView(view);
    return view;
   } 

   @Override
   public boolean isViewFromObject(View arg0, Object arg1) { 

    return arg0 == arg1;
   } 

   @Override
   public int getCount() { 

    return mViews.size();
   }
  };
  mViewPager.setAdapter(mPagerAdapter);
 } 

 /**
  * 判断哪个要显示,及设置按钮图片
  */
 @Override
 public void onClick(View arg0) { 

  switch (arg0.getId()) {
  case R.id.id_tab_weixin:
   mViewPager.setCurrentItem(0);
   resetImg();
   mWeiXinImg.setImageResource(R.drawable.tab_weixin_pressed);
   break;
  case R.id.id_tab_address:
   mViewPager.setCurrentItem(1);
   resetImg();
   mAddressImg.setImageResource(R.drawable.tab_address_pressed);
   break;
  case R.id.id_tab_frd:
   mViewPager.setCurrentItem(2);
   resetImg();
   mFrdImg.setImageResource(R.drawable.tab_find_frd_pressed);
   break;
  case R.id.id_tab_settings:
   mViewPager.setCurrentItem(3);
   resetImg();
   mSettingImg.setImageResource(R.drawable.tab_settings_pressed);
   break;
  default:
   break;
  }
 } 

 /**
  * 把所有图片变暗
  */
 private void resetImg() {
  mWeiXinImg.setImageResource(R.drawable.tab_weixin_normal);
  mAddressImg.setImageResource(R.drawable.tab_address_normal);
  mFrdImg.setImageResource(R.drawable.tab_find_frd_normal);
  mSettingImg.setImageResource(R.drawable.tab_settings_normal);
 } 

}

代码量很短,只有几百行,功能就可以实现了,注意这里去掉程序原本的标题栏我直接用了
requestWindowFeature(Window.FEATURE_NO_TITLE); 

2、效果:

三、思路说明
1、分别为顶部菜单栏和底部菜单栏新建一个布局
2、中间是ViewPage,然后里面放四个Page(tab01-tab04.xml),注意,要通过适配器给ViewPage提供内容.
3、监听ViewPage和底部菜单栏按钮的事件(注意,这里的按钮放在一个LinearLayout中,所以我们监听了LinearLayout的触摸事件,而屏蔽了Imgaebutton的触摸事件)
4、
public void onClick(View arg0) 
这里面监听的是底部菜单的触摸事件,根据触摸的控件,改变自身的亮度、改变ViewPage显示的内容
mViewPager.setOnPageChangeListener(new OnPageChangeListener()  

这里监听的是ViewPage左右滑动的事件,改变相应控件的亮度、改变ViewPage显示的内容
四、不足之处
1、最新版微信上应该是左右滑动是有部分亮度变化的,这里直接转变过去了。
2、最新版微信文字也要跟着变化,这里没做改变

本文已被整理到了《Android微信开发教程汇总》,欢迎大家学习阅读。

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

(0)

相关推荐

  • Android开发之微信底部菜单栏实现的几种方法汇总

     实现方式 实现的方式有很多种 这里总结最常见的几种方式,以后再添加其他的. viewPager + RadioGroup viewPager + FragmentTabHost viewpager +TabLayout viewPager+RadioGroup 感觉这是最简单的一个了,我也就不贴代码 说说我理解的思路吧 通过给pager 和RadioGroup 添加监听,监听两个控件的变化 实现联动 当viewPager的显示pager改变就会触发监听 ,在监听中选中对应的RadioButto

  • android自定义popupwindow仿微信右上角弹出菜单效果

    微信右上角的操作菜单看起来很好用,就照着仿了一下,不过是旧版微信的,手里刚好有一些旧版微信的资源图标,给大家分享一下. 不知道微信是用什么实现的,我使用popupwindow来实现,主要分为几块内容: 1.窗口布局文件:popwin_share.xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com

  • Android仿微信底部菜单栏效果

    前言 在市面上,大多数的APP都需要通过底部菜单栏来将程序的功能进行分类整理,通常都是分为3-5个大模块,从而正确有效地引导用户去使用我们的APP.实现底部菜单栏的方法也有很多种. 1.仿微信底部菜单栏(ViewPager+ImagerView+TextView) ......(其他方式后续会补充) 效果预览 首先来个开胃菜,看看实现效果: 先贴出项目所需的资源文件,这些可随个人自由更改颜色和文字 colors.xml <color name="bg_line_light_gray&quo

  • Android仿微信底部菜单栏功能显示未读消息数量

    底部菜单栏很重要,我看了一下很多应用软件都是用了底部菜单栏,这里使用了tabhost做了一种通用的(就是可以像微信那样显示未读消息数量的,虽然之前也做过但是layout下的xml写的太臃肿,这里去掉了很多不必要的层,个人看起来还是不错的,所以贴出来方便以后使用). 先看一下做出来之后的效果: 以后使用的时候就可以换成自己项目的图片和字体了,主框架不用变哈哈, 首先是要布局layout下xml文件 main.xml: <?xml version="1.0" encoding=&qu

  • Android开发Popwindow仿微信右上角下拉菜单实例代码

    先给大家看下效果图: MenuPopwindow: package com.cloudeye.android.cloudeye.view; import android.app.Activity; import android.content.Context; import android.graphics.drawable.ColorDrawable; import android.view.LayoutInflater; import android.view.View; import an

  • Android仿微信滑动弹出编辑、删除菜单效果、增加下拉刷新功能

    如何为不同的list item呈现不同的菜单,本文实例就为大家介绍了Android仿微信或QQ滑动弹出编辑.删除菜单效果.增加下拉刷新等功能的实现,分享给大家供大家参考,具体内容如下 效果图: 1. 下载开源项目,并将其中的liberary导入到自己的项目中: 2. 使用SwipeMenuListView代替ListView,在页面中布局: <android.support.v4.widget.SwipeRefreshLayout android:id="@+id/swipeRefresh

  • Android制作微信app顶部menu菜单(ActionBar)

    使用微信APP的小伙伴对于微信的ActionBar一定有印象,今天就带领大家一起实现以下这个效果. 第一步打开我们的开发工具,这里我使用的是Eclipse+ADT插件,然后创建我们的工程,这里选择Android的最低版本号为3.0或以上. 然后开始我们的"抄袭",首先打开我们微信,我们看到,顶部标题部分,分为左右两部分,左侧为"微信"两字,右侧则为搜索按钮+更多按钮,点击搜索按钮,会出现一个文本输入框.点击更多按钮,则会出现隐藏的menu菜单,分为:添加好友.发起群

  • Android中微信小程序开发之弹出菜单

    先给大家展示下效果图,具体效果图如下所示: 具体代码如下所示: 1.index.js //index.js //获取应用实例 var app = getApp() Page({ data: { isPopping: false,//是否已经弹出 animationPlus: {},//旋转动画 animationcollect: {},//item位移,透明度 animationTranspond: {},//item位移,透明度 animationInput: {},//item位移,透明度

  • Android仿微信菜单(Menu)(使用C#和Java分别实现)

    本篇是对安卓菜单使用编程方式实现,当然可以使用XML的方式完成同样的功能,基本Java和C#写法都是一致的,所以使用XML的方式在本篇中使用Java演示,需要注意的是,对于如果不是VS开发的话,那么资源文件名称必须以小写开头,否则会报错. 运行效果 C#实现 using Android.App; using Android.OS; using Android.Views; using Android.Widget; namespace MenuDemo { [Activity(Label = "

  • Android仿微信顶/底部菜单栏效果

    本文要实现仿微信微信底部菜单栏+顶部菜单栏,采用ViewPage来做,每一个page对应一个XML,当手指在ViewPage左右滑动时,就相应显示不同的page(其实就是xml)并且同时改变底部菜单按钮的图片变暗或变亮,同时如果点击底部菜单按钮,左右滑动page(其实就是xml)并且改变相应按钮的亮度. 一.布局 1.顶部菜单布局,命名为top_layout.xml <?xml version="1.0" encoding="utf-8"?> <R

  • Android仿微信页面底部导航效果代码实现

    大家在参考本地代码的时候要根据需要适当的修改,里面有冗余代码小编没有删除.好了,废话不多说了,一切让代码说话吧! 关键代码如下所示: .java里面的主要代码 public class MainActivity extends BaseActivity implements TabChangeListener { private Fragment[] fragments; private FragZaiXianYuYue fragZaiXianYuYue; private FragDaoLuJi

  • Android仿微信长按菜单效果

    本文实例为大家分享了Android仿微信长按菜单展示的具体代码,供大家参考,具体内容如下 FloatMenu A menu style pop-up window that mimics WeChat.仿微信的长按菜单. 效果如下 引入方法: Github地址:https://github.com/JavaNoober/FloatMenu dependencies { .... compile 'com.noober.floatmenu:common:1.0.2' } 使用说明 使用方法1: A

  • Android仿微信文章悬浮窗效果的实现代码

    序言 前些日子跟朋友聊天,朋友Z果粉,前些天更新了微信,说微信出了个好方便的功能啊,我问是啥功能啊,看看我大Android有没有,他说现在阅读公众号文章如果有人给你发微信你可以把这篇文章当作悬浮窗悬浮起来,方便你聊完天不用找继续阅读,听完是不是觉得这叫啥啊,我大Android微信版不是早就有这个功能了吗,我看文章的时候看到过有这个悬浮按钮,但是我一直没有使用过,试了一下还是挺方便的,就想着自己实现一下这个功能,下面看图,大家都习惯了无图言X 原理 看完动图我们来分析一下,如何在每个页面上都存在一

  • Android仿微信通讯录列表侧边栏效果

    先看Android仿微信通讯录列表侧边栏效果图 这是比较常见的效果了吧 列表根据首字符的拼音字母来排序,且可以通过侧边栏的字母索引来进行定位. 实现这样一个效果并不难,只要自定义一个索引View,然后引入一个可以对汉字进行拼音解析的jar包--pinyin4j-2.5.0即可 首先,先来定义侧边栏控件View,只要直接画出来即可. 字母选中项会变为红色,且滑动时背景会变色,此时SideBar并不包含居中的提示文本 public class SideBar extends View { priva

  • Android仿微信activity滑动关闭效果

    Android仿微信activity滑动关闭功能 1.利用具体利用v4包下的slidingPaneLayout实现透明的activity,代码如下: BaseActivity: public class BaseSlideCloseActivity extends AppCompatActivity implements SlidingPaneLayout.PanelSlideListener { @Override protected void onCreate(Bundle savedIns

  • Android仿微信群聊头像效果

    在网上找了些仿微信群聊头像的开源库后,发现没特别好用的,或者说满足我需求的,就只好在别人的基础上改了下,也就有了这样的自定义控件了,以此来实现微信群聊头像的效果,效果图如下所示: 主要实现: 一.自定义viewGroup,以此来实现主要的代码逻辑 public class NineGridImageView<T> extends ViewGroup{ private int mRowCount; //行数 private int mColumnCount; //列数 private int m

  • Android仿微信联系人字母排序效果

    本文实例为大家分享了Android联系人字母排序的具体代码,供大家参考,具体内容如下 实现思路:首先说下布局,整个是一个相对布局,最下面是一个listview,listview上面是一个自定义的view(右边显示字母),最上面是一个textview(屏幕中间的方块). 首先说一下右边自定义view,字母是画到view上面的,首先计算一下view的高度,然后除以存放字母数组的长的,得到每个字符的高度:每个字母的宽度都是一样的,所以这里直接设置30sp: listview显示的是108个梁山好汉的名

  • Android仿微信之界面导航篇(1)

    微信是现在比较流行的应用了,在各大安卓市场几乎都是名列前茅了. 说实话不得不羡慕腾讯庞大的用户群体,只要腾讯敢做,就会有很多人去用. 废话不多说,下面就开始说一下如何实现微信的第一次启动程序的用户导航,ViewPager相信大家都不陌生了,是google放出的一个安卓低版本的兼容包android-support-v4.jar,里面有很多类我们可以去使用.那这个导航就是使用这个类来辅助完成的,在每一个View里放置一个图片,当我们使用ViewPager滑动界面的时候,就会看到一张张图片,从而实现这

  • Android仿微信加号菜单模式

    在模仿微信过程中有一个加号菜单启动着实让我有点费心,因为我去掉了自带的标题栏,想通过OnCreateOptionMenu这段代码来实现传统的Menu显示显然是不可能了.所以在自定义创建的状态栏里添加了一个加号的ImageView,想通过监听ImageView的Onclick来触发Popumenu的创建.基本效果与微信相似,细节方面还需多多考究. 看具体代码如下: 1.监听之后创建Popumenu的java代码: menuView.setOnClickListener(new View.OnCli

随机推荐