`
iaiai
  • 浏览: 2195854 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

Android DrawerLayout 高仿QQ5.2双向侧滑菜单

 
阅读更多
转载请标明出处:http://blog.csdn.net/lmj623565791/article/details/41531475,本文出自:【张鸿洋的博客】
1、概述
之前写了一个Android 高仿 QQ5.0 侧滑菜单效果 自定义控件来袭 ,恰逢QQ5.2又加了一个右侧菜单,刚好看了下DrawerLayout,一方面官方的东西,我都比较感兴趣;另一方面,这玩意用起来的确方便,于是简单写了个demo,高仿QQ5.2双向侧滑,分享给大家。

首先看看效果图:

DrawerLayout用起来真的很方便,下面一起看看用法~

2、DrawerLayout的使用
直接将DrawerLayout作为根布局,然后其内部第一个View为内容区域,第二个View为左侧菜单,第三个View为右侧侧滑菜单,当前第三个是可选的。

第一个View的宽高应当设置为match_parent,当然了,这也理所当然。

第二、三个View需要设置android:layout_gravity="left",和android:layout_gravity="right"且一搬高度设置为match_parent,宽度为固定值,即侧滑菜单的宽度。

按照上面的描述写个布局文件,然后设置给Activity就添加好了左右侧滑了,是不是很简单~~~

比如我们的布局文件:
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"  
    xmlns:tools="http://schemas.android.com/tools"  
    android:id="@+id/id_drawerLayout"  
    android:layout_width="match_parent"  
    android:layout_height="match_parent"  
    android:background="@drawable/img_frame_background" >  
  
    <RelativeLayout  
        android:layout_width="match_parent"  
        android:layout_height="match_parent"  
        android:background="@drawable/qq" >  
  
        <Button  
            android:layout_width="40dp"  
            android:layout_height="30dp"  
             android:layout_marginTop="10dp"  
            android:layout_alignParentRight="true"  
            android:background="@drawable/youce"  
            android:onClick="OpenRightMenu" />  
    </RelativeLayout>  
  
    <fragment  
        android:id="@+id/id_left_menu"  
        android:name="com.zhy.demo_zhy_17_drawerlayout.MenuLeftFragment"  
        android:layout_width="200dp"  
        android:layout_height="match_parent"  
        android:layout_gravity="left"  
        android:tag="LEFT" />  
  
    <fragment  
        android:id="@+id/id_right_menu"  
        android:name="com.zhy.demo_zhy_17_drawerlayout.MenuRightFragment"  
        android:layout_width="100dp"  
        android:layout_height="match_parent"  
        android:layout_gravity="right"  
        android:tag="RIGHT" />  
  
</android.support.v4.widget.DrawerLayout>

这里我们的主内容区域为RelativeLayout
菜单用的两个Fragment,左侧为200dp,右侧为100dp;

好了,看了我们的布局文件,接下来看下我们的详细代码。

3、代码是最好的老师

1、MenuLeftFragment
package com.zhy.demo_zhy_17_drawerlayout;  
  
import android.os.Bundle;  
import android.support.v4.app.Fragment;  
import android.view.LayoutInflater;  
import android.view.View;  
import android.view.ViewGroup;  
  
public class MenuLeftFragment extends Fragment  
{  
  
    @Override  
    public View onCreateView(LayoutInflater inflater, ViewGroup container,  
            Bundle savedInstanceState)  
    {  
        return inflater.inflate(R.layout.layout_menu, container, false);  
    }  
}

对应的布局文件:
<?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="match_parent"  
    android:background="#00000000" >  
  
    <LinearLayout  
        android:layout_width="match_parent"  
        android:layout_height="wrap_content"  
        android:layout_centerVertical="true"  
        android:orientation="vertical" >  
  
        <RelativeLayout  
            android:layout_width="match_parent"  
            android:layout_height="wrap_content" >  
  
            <ImageView  
                android:id="@+id/one"  
                android:layout_width="50dp"  
                android:layout_height="50dp"  
                android:layout_centerVertical="true"  
                android:layout_marginLeft="20dp"  
                android:layout_marginTop="20dp"  
                android:src="@drawable/img_1" />  
  
            <TextView  
                android:layout_width="fill_parent"  
                android:layout_height="wrap_content"  
                android:layout_centerVertical="true"  
                android:layout_marginLeft="20dp"  
                android:layout_toRightOf="@id/one"  
                android:text="第1个Item"  
                android:textColor="#f0f0f0"  
                android:textSize="20sp" />  
        </RelativeLayout>  
  
        <RelativeLayout  
            android:layout_width="match_parent"  
            android:layout_height="wrap_content" >  
  
            <ImageView  
                android:id="@+id/two"  
                android:layout_width="50dp"  
                android:layout_height="50dp"  
                android:layout_centerVertical="true"  
                android:layout_marginLeft="20dp"  
                android:layout_marginTop="20dp"  
                android:src="@drawable/img_2" />  
  
            <TextView  
                android:layout_width="fill_parent"  
                android:layout_height="wrap_content"  
                android:layout_centerVertical="true"  
                android:layout_marginLeft="20dp"  
                android:layout_toRightOf="@id/two"  
                android:text="第2个Item"  
                android:textColor="#f0f0f0"  
                android:textSize="20sp" />  
        </RelativeLayout>  
  
        <RelativeLayout  
            android:layout_width="match_parent"  
            android:layout_height="wrap_content" >  
  
            <ImageView  
                android:id="@+id/three"  
                android:layout_width="50dp"  
                android:layout_height="50dp"  
                android:layout_centerVertical="true"  
                android:layout_marginLeft="20dp"  
                android:layout_marginTop="20dp"  
                android:src="@drawable/img_3" />  
  
            <TextView  
                android:layout_width="fill_parent"  
                android:layout_height="wrap_content"  
                android:layout_centerVertical="true"  
                android:layout_marginLeft="20dp"  
                android:layout_toRightOf="@id/three"  
                android:text="第3个Item"  
                android:textColor="#f0f0f0"  
                android:textSize="20sp" />  
        </RelativeLayout>  
  
        <RelativeLayout  
            android:layout_width="match_parent"  
            android:layout_height="wrap_content" >  
  
            <ImageView  
                android:id="@+id/four"  
                android:layout_width="50dp"  
                android:layout_height="50dp"  
                android:layout_centerVertical="true"  
                android:layout_marginLeft="20dp"  
                android:layout_marginTop="20dp"  
                android:src="@drawable/img_4" />  
  
            <TextView  
                android:layout_width="fill_parent"  
                android:layout_height="wrap_content"  
                android:layout_centerVertical="true"  
                android:layout_marginLeft="20dp"  
                android:layout_toRightOf="@id/four"  
                android:text="第4个Item"  
                android:textColor="#f0f0f0"  
                android:textSize="20sp" />  
        </RelativeLayout>  
  
        <RelativeLayout  
            android:layout_width="match_parent"  
            android:layout_height="wrap_content" >  
  
            <ImageView  
                android:id="@+id/five"  
                android:layout_width="50dp"  
                android:layout_height="50dp"  
                android:layout_centerVertical="true"  
                android:layout_marginLeft="20dp"  
                android:layout_marginTop="20dp"  
                android:src="@drawable/img_5" />  
  
            <TextView  
                android:layout_width="fill_parent"  
                android:layout_height="wrap_content"  
                android:layout_centerVertical="true"  
                android:layout_marginLeft="20dp"  
                android:layout_toRightOf="@id/five"  
                android:text="第5个Item"  
                android:textColor="#f0f0f0"  
                android:textSize="20sp" />  
        </RelativeLayout>  
    </LinearLayout>  
  
</RelativeLayout>

其实就是堆出来的布局~~没撒意思~
2、MenuRightFragment
package com.zhy.demo_zhy_17_drawerlayout;  
  
import android.os.Bundle;  
import android.support.v4.app.Fragment;  
import android.view.LayoutInflater;  
import android.view.View;  
import android.view.ViewGroup;  
  
public class MenuRightFragment extends Fragment  
{  
  
    @Override  
    public View onCreateView(LayoutInflater inflater, ViewGroup container,  
            Bundle savedInstanceState)  
    {  
        return inflater.inflate(R.layout.menu_layout_right, container, false);  
    }  
}

对应布局文件:
<?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_vertical"  
    android:orientation="vertical" >  
  
    <LinearLayout  
        android:layout_width="match_parent"  
        android:layout_height="wrap_content"  
        android:layout_centerVertical="true"  
        android:layout_gravity="center_vertical"  
        android:layout_marginBottom="20dp"  
        android:orientation="vertical" >  
  
        <ImageView  
            android:layout_width="60dp"  
            android:layout_height="60dp"  
            android:layout_gravity="center"  
            android:src="@drawable/wode" />  
  
        <TextView  
            android:layout_width="fill_parent"  
            android:layout_height="wrap_content"  
            android:gravity="center"  
            android:text="扫一扫"  
            android:textColor="#ffffff" />  
    </LinearLayout>  
  
    <LinearLayout  
        android:layout_width="match_parent"  
        android:layout_height="wrap_content"  
        android:layout_centerVertical="true"  
        android:layout_gravity="center_vertical"  
        android:layout_marginBottom="20dp"  
        android:orientation="vertical" >  
  
        <ImageView  
            android:layout_width="60dp"  
            android:layout_height="60dp"  
            android:layout_gravity="center"  
            android:src="@drawable/saoma" />  
  
        <TextView  
            android:layout_width="fill_parent"  
            android:layout_height="wrap_content"  
            android:gravity="center"  
            android:text="讨论组"  
            android:textColor="#ffffff" />  
    </LinearLayout>  
  
    <LinearLayout  
        android:layout_width="match_parent"  
        android:layout_height="wrap_content"  
        android:layout_centerVertical="true"  
        android:layout_gravity="center_vertical"  
        android:layout_marginBottom="20dp"  
        android:orientation="vertical" >  
  
        <ImageView  
            android:layout_width="60dp"  
            android:layout_height="60dp"  
            android:layout_gravity="center"  
            android:src="@drawable/wode" />  
  
        <TextView  
            android:layout_width="fill_parent"  
            android:layout_height="wrap_content"  
            android:gravity="center"  
            android:text="扫一扫"  
            android:textColor="#ffffff" />  
    </LinearLayout>  
  
    <LinearLayout  
        android:layout_width="match_parent"  
        android:layout_height="wrap_content"  
        android:layout_centerVertical="true"  
        android:layout_gravity="center_vertical"  
        android:layout_marginBottom="20dp"  
        android:orientation="vertical" >  
  
        <ImageView  
            android:layout_width="60dp"  
            android:layout_height="60dp"  
            android:layout_gravity="center"  
            android:src="@drawable/saoma" />  
  
        <TextView  
            android:layout_width="fill_parent"  
            android:layout_height="wrap_content"  
            android:gravity="center"  
            android:text="讨论组"  
            android:textColor="#ffffff" />  
    </LinearLayout>  
  
</LinearLayout>

依旧很简单,除了图标比较难找以外~~
3、MainActivity
MainActivity的布局文件已经贴过了~~
package com.zhy.demo_zhy_17_drawerlayout;  
  
import android.os.Bundle;  
import android.support.v4.app.FragmentActivity;  
import android.support.v4.widget.DrawerLayout;  
import android.support.v4.widget.DrawerLayout.DrawerListener;  
import android.view.Gravity;  
import android.view.View;  
import android.view.Window;  
  
import com.nineoldandroids.view.ViewHelper;  
  
public class MainActivity extends FragmentActivity  
{  
  
    private DrawerLayout mDrawerLayout;  
  
    @Override  
    protected void onCreate(Bundle savedInstanceState)  
    {  
        super.onCreate(savedInstanceState);  
        requestWindowFeature(Window.FEATURE_NO_TITLE);  
        setContentView(R.layout.activity_main);  
  
        initView();  
        initEvents();  
  
    }  
  
    public void OpenRightMenu(View view)  
    {  
        mDrawerLayout.openDrawer(Gravity.RIGHT);  
        mDrawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_UNLOCKED,  
                Gravity.RIGHT);  
    }  
  
    private void initEvents()  
    {  
        mDrawerLayout.setDrawerListener(new DrawerListener()  
        {  
            @Override  
            public void onDrawerStateChanged(int newState)  
            {  
            }  
  
            @Override  
            public void onDrawerSlide(View drawerView, float slideOffset)  
            {  
                View mContent = mDrawerLayout.getChildAt(0);  
                View mMenu = drawerView;  
                float scale = 1 - slideOffset;  
                float rightScale = 0.8f + scale * 0.2f;  
  
                if (drawerView.getTag().equals("LEFT"))  
                {  
  
                    float leftScale = 1 - 0.3f * scale;  
  
                    ViewHelper.setScaleX(mMenu, leftScale);  
                    ViewHelper.setScaleY(mMenu, leftScale);  
                    ViewHelper.setAlpha(mMenu, 0.6f + 0.4f * (1 - scale));  
                    ViewHelper.setTranslationX(mContent,  
                            mMenu.getMeasuredWidth() * (1 - scale));  
                    ViewHelper.setPivotX(mContent, 0);  
                    ViewHelper.setPivotY(mContent,  
                            mContent.getMeasuredHeight() / 2);  
                    mContent.invalidate();  
                    ViewHelper.setScaleX(mContent, rightScale);  
                    ViewHelper.setScaleY(mContent, rightScale);  
                } else  
                {  
                    ViewHelper.setTranslationX(mContent,  
                            -mMenu.getMeasuredWidth() * slideOffset);  
                    ViewHelper.setPivotX(mContent, mContent.getMeasuredWidth());  
                    ViewHelper.setPivotY(mContent,  
                            mContent.getMeasuredHeight() / 2);  
                    mContent.invalidate();  
                    ViewHelper.setScaleX(mContent, rightScale);  
                    ViewHelper.setScaleY(mContent, rightScale);  
                }  
  
            }  
  
            @Override  
            public void onDrawerOpened(View drawerView)  
            {  
            }  
  
            @Override  
            public void onDrawerClosed(View drawerView)  
            {  
                mDrawerLayout.setDrawerLockMode(  
                        DrawerLayout.LOCK_MODE_LOCKED_CLOSED, Gravity.RIGHT);  
            }  
        });  
    }  
  
    private void initView()  
    {  
        mDrawerLayout = (DrawerLayout) findViewById(R.id.id_drawerLayout);  
        mDrawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_LOCKED_CLOSED,  
                Gravity.RIGHT);  
    }  
  
} 


嗯,代码基本没什么注释~~维撒呢?是因为的确没什么好注释的。
提几点:

1、为了模拟QQ的右侧菜单需要点击才能出现,所以在初始化DrawerLayout的时候,使用了mDrawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_LOCKED_CLOSED,Gravity.RIGHT);意思是只有编程才能将其弹出。

然后在弹出以后,需要让手势可以滑动回去,所以在OpenRightMenu中又编写了:

mDrawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_UNLOCKED,Gravity.RIGHT); UNLOCK了一下。

最后在onDrawerClosed回调中,继续设置mDrawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_LOCKED_CLOSED,Gravity.RIGHT);

2、动画效果

动画用了nineoldandroids,关于动画各种偏移量、缩放比例的计算请参考Android 高仿 QQ5.0 侧滑菜单效果 自定义控件来袭 基本是一致的,唯一的不同的地方,给Content设置了ViewHelper.setTranslationX(mContent, mMenu.getMeasuredWidth() * (1 - scale));让Content在菜单的右侧,默认情况下Menu在菜单之上,所以我们根据菜单划出的距离给Content设置X方向的偏移量。

好了,其实看到可以这么做,基本上任何的侧滑菜单效果都能写出来了。有兴趣的话,可以拿DrawerLayout实现这篇博客的所有效果:Android 实现形态各异的双向侧滑菜单 自定义控件来袭 。

3、setDrawerListener

通过代码也能看出来,可以使用setDrawerListener监听菜单的打开与关闭等等。这里对于当前操作是哪个菜单的判断是通过TAG判断的,我觉得使用gravity应该也能判断出来~~



好了,没撒了,由于DrawerLayout默认只能从边界划出菜单,但是QQ划出菜单的手势区域比较大,大家有兴趣,可以重写Activity的onTouchEvent,在里面判断,如果是左右滑动手势神马的,弹出菜单,应该不麻烦~~~

  • 大小: 1.3 MB
分享到:
评论

相关推荐

    Android DrawerLayout 高仿QQ5.2双向侧滑菜单程序文件

    代码为博客的示例代码,有问题请博客留言http://blog.csdn.net/lmj623565791/article/details/41531475。

    Android 高仿QQ5.2双向侧滑菜单DrawerLayout实现源码

    在Android应用开发中,创建一个高仿QQ5.2版本的双向侧滑菜单是一项常见的需求,这涉及到对Android原生控件`DrawerLayout`的深入理解和定制。`DrawerLayout`是Android SDK提供的一种布局,它允许开发者在屏幕边缘滑出...

    Android 高仿 QQ5.2 侧滑菜单效果及QQmini效果

    在Android应用开发中,创建一个引人入胜的用户体验至关重要,而高仿QQ5.2的侧滑菜单和QQmini效果就是这样的一个设计亮点。这种设计不仅提供了丰富的功能,还能保持界面的简洁和易用性。下面将详细介绍这两个效果及其...

    Android 超高仿 QQ5.0 侧滑菜单项目完整实例代码

    【Android超高仿QQ5.0侧滑菜单项目完整实例代码】是一个针对Android开发者的实践教程,旨在教开发者如何实现类似QQ5.0版本中的侧滑菜单效果。这个实例代码是基于CSDN博主的文章,你可以通过提供的链接在博客中找到更...

    高仿QQ2015,侧滑菜单栏+tabhost

    在Android应用开发中,"高仿QQ2015,侧滑菜单栏+tabhost"是一个常见的项目主题,旨在创建一个与2015年版QQ应用类似的用户界面。这个项目涉及到了多个关键的技术点,下面将详细阐述这些知识点。 首先,**登录页**是...

    Android开发+UI组件+QQ侧滑菜单+项目实战示例:Android 超高仿 QQ5.0 侧滑菜单项目完整实例代码

    本资源包“Android开发+UI组件+QQ侧滑菜单+项目实战示例:Android 超高仿 QQ5.0 侧滑菜单项目完整实例代码”为Android开发者提供了一个详尽的实例,展示如何创建一个与QQ5.0版本中的侧滑菜单高度相似的用户界面。...

    DrawerLayout+SwipeMenu高仿qq侧滑抽屉式菜单和侧滑删除功能

    总的来说,`DrawerLayout`和`SwipeMenu`是Android开发中实现类似QQ侧滑菜单和侧滑删除功能的重要工具。通过合理运用这两个组件,开发者能够创建出更丰富、更直观的用户界面。在实际项目中,还可以结合`Navigation...

    Android_高仿微信5.2布局源码下载

    【Android_高仿微信5.2布局源码详解】 在Android开发中,高仿其他流行应用的界面布局是一种常见的学习和提升技术的方式。本资源提供的是针对微信5.2版本的高仿源码,这对于想要深入理解Android UI设计以及微信交互...

    Android仿腾讯QQ侧滑菜单

    Android 利用ViewDragHelper实现的仿腾讯QQ侧滑菜单的实现

    Android 高仿 QQ5.0 侧滑菜单效果 自定义控件

    在Android应用开发中,创建一个类似QQ5.0版本的侧滑菜单效果是提升用户体验的重要方式之一。这种设计不仅美观,而且提供了便捷的导航功能。本文将深入探讨如何实现这样一个自定义控件,并重点关注其中的缩放效果。 ...

    android高仿微信5.2

    在Android开发领域,"高仿微信5.2"是一个经典的项目,它旨在模仿微信的界面设计和功能实现,为开发者提供了一个深入学习Android UI设计、网络通信、数据存储以及多线程处理等技术的实践平台。这个项目对于提升开发者...

    android 高仿 QQ5.0侧滑菜单 源码

    这个"android 高仿 QQ5.0侧滑菜单 源码"项目是针对Android 4.4(KitKat)系统开发的,旨在实现与QQ5.0应用类似的侧滑菜单效果。通过分析和学习这个源码,开发者可以了解如何在自己的应用中实现这种交互体验。 1. **...

    AndroidQQ5.0 超高仿侧滑菜单项目完整实例代码

    【Android】QQ5.0 超高仿侧滑菜单项目完整实例代码资源描述如下: 一、项目概述 本项目是一个Android平台的超高仿QQ5.0版本的侧滑菜单实现。侧滑菜单,也称为抽屉式菜单,是一种常见的Android UI设计模式,允许用户...

    Android-侧滑菜单仿qq5.0版本的侧滑效果

    本教程将详细介绍如何在Android项目中实现一个仿QQ5.0版本的侧滑菜单效果,这涉及到Android的动画效果、布局管理和触摸事件处理等多个知识点。 首先,我们需要了解侧滑菜单的基本结构。它通常由两部分组成:主要...

    Android 高仿 QQ5.0 侧滑左边菜单效果

    在Android应用开发中,创建一个类似QQ5.0的侧滑左边菜单效果是常见的需求,它为用户提供了方便快捷的导航功能。这个效果通常被称为DrawerLayout,源自Android SDK中的一个组件,可以实现从屏幕边缘滑出隐藏的菜单。...

    Android 高仿 QQ5.0 侧滑菜单效果 自定义控件来袭【学习鸿洋_视频博客笔记总结】

    本篇文章将深入探讨如何实现“Android高仿QQ5.0侧滑菜单效果”,这一特性是通过自定义控件来达成的,旨在帮助开发者们提升应用的交互性和美观度。 首先,我们需要理解QQ5.0的侧滑菜单设计。这个设计允许用户从屏幕...

    android design潮流,高仿微信5.2界面实现

    1. **布局设计**:微信5.2界面采用了清晰的层级结构,如底部导航栏(Bottom Navigation)提供主要功能切换,顶部抽屉式菜单(Drawer Layout)用于更多选项。开发者可以使用Android Studio中的预定义布局组件来实现...

    安卓Android源码——高仿微信5.2内测版UI项目.zip

    这个压缩包文件“安卓Android源码——高仿微信5.2内测版UI项目.zip”包含了一个基于Android平台的UI项目,目标是模仿微信5.2内测版本的用户界面设计。通过分析这个项目的源码,我们可以深入学习Android UI开发的各种...

Global site tag (gtag.js) - Google Analytics