1. 实现效果图:
2. 工程路径:
上图的效果是用自定义HorizontalScrollView来实现的,在HorizontalScrollView里潜入一个横向排列的线性布局,然后在线性布局里分别加入菜单布局
(left_menu.xml)和内容布局,在我们初始化的时候把HorizontalScrollView的滚动条向左拉至左边菜单距离即可实现菜单布局的隐藏,关于缩放,移
动效果我们可以使用开源动画库nineoldandroids(android 3.0之后出现的)来实现,只需要几行代码。
3. 实现思路:
(1)从效果图中我们可以得知,我们需要一个在左边显示的菜单布局:left_menu.xml,在主布局
activity_main中我们实现了一个自定义的ViewGroup布局类SlidingMenu.java,该布局继承了
HorizontalScrollView类,该自定义布局中包括left_menu和qq页面(即两个ViewGroup)。
(2)然后在SlidingMenu.java类中利用重写HorizontalScrollView里的方法,实现我们所需要的滑动效
果。在MainActivity.java中实现切换菜单按钮的点击效果。
(3)自定义属性,允许用户设置菜单离屏幕右边的距离。attr.xml,在Activity_main.xml中定义命名空间:xmlns:hyman="http://schemas.android.com/apk/res/com.imooc.slidingmenu",红色标注的必须是你的应用所在的包名。在构造方法SlidingMenu(Context context, AttributeSet attrs, int defStyle)中获得我们设置的属性值。
4. 掌握知识:
(1)HorizontalScrollView
用于布局的容器,可以放置让用户使用滚动条查看的视图层次结构,允许视图结构比手机的屏幕大。
HorizontalScrollView 是一种框架布局, 这意味着你可以将包含要滚动的完整内容的子视图放入该容器
;该子视图本身也可以是具有复杂层次结构的布局管理器.一般使用横向的LinearLayout作为子视图,使用
户可以滚动其中显示的条目,并且HorizontalScrollView只支持水平方向的滚动。
几个重要方法的用法:
onMeasure(int widthMeasureSpec,int heightMeasureSpec):设置子View的宽高,决定自身View的
宽高,每次启动都会调用此方法。
onLayout(boolean changed, int l, int t, int r, int b):设置View的位置,首先,先将Menu隐藏(
在eclipse中ScrollView的画面内容(非滚动条)正数表示向左移,向上移)。
参数说明:参数changed表示view有新的尺寸或位置;参数l表示相对于父view的Left位置;参数t表示相对于父view的Top位置;参数r表示相对于父view的Right位置;参数b表示相对于父view的Bottom位置。.
onTouchEvent(MotionEvent ev):处理触屏事件。
onScrollChanged(int l, int t, int oldl, int oldt):滚动发生时,使菜单和内容有缩放的效果。
(2)ViewGroup
5. 实现代码
(1)strings.xml
<span style="font-size:14px;"><?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">imooc-qq_50_slidingmenu</string>
<string name="action_settings">Settings</string>
<string name="oneitem">第一个Item</string>
<string name="twoitem">第二个Item</string>
<string name="threeitem">第三个Item</string>
<string name="fouritem">第四个Item</string>
<string name="fiveitem">第五个Item</string>
</resources></span>
(2)left_menu.xml
<span style="font-size:14px;"><?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="#0000" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:orientation="vertical" >
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<ImageView
android:id="@+id/id_img1"
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="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginLeft="20dp"
android:layout_toRightOf="@id/id_img1"
android:text="@string/oneitem"
android:textColor="#000000"
android:textSize="20sp" />
</RelativeLayout>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<ImageView
android:id="@+id/id_img2"
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="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginLeft="20dp"
android:layout_toRightOf="@id/id_img2"
android:text="@string/twoitem"
android:textColor="#000000"
android:textSize="20sp" />
</RelativeLayout>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<ImageView
android:id="@+id/id_img3"
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="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginLeft="20dp"
android:layout_toRightOf="@id/id_img3"
android:text="@string/threeitem"
android:textColor="#000000"
android:textSize="20sp" />
</RelativeLayout>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<ImageView
android:id="@+id/id_img4"
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="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginLeft="20dp"
android:layout_toRightOf="@id/id_img4"
android:text="@string/fouritem"
android:textColor="#000000"
android:textSize="20sp" />
</RelativeLayout>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<ImageView
android:id="@+id/id_img5"
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="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginLeft="20dp"
android:layout_toRightOf="@id/id_img5"
android:text="@string/fiveitem"
android:textColor="#000000"
android:textSize="20sp" />
</RelativeLayout>
</LinearLayout>
</RelativeLayout></span>
(3)SlidingMenu.java
<span style="font-size:14px;">package com.imooc.slidingmenu.view;
import android.content.Context;
import android.content.res.TypedArray;
import android.util.AttributeSet;
import android.util.DisplayMetrics;
import android.util.TypedValue;
import android.view.MotionEvent;
import android.view.ViewGroup;
import android.view.WindowManager;
import android.widget.HorizontalScrollView;
import android.widget.LinearLayout;
import com.imooc.slidingmenu.R;
import com.nineoldandroids.view.ViewHelper;
public class SlidingMenu extends HorizontalScrollView {
// 在HorizontalScrollView有个LinearLayout
private LinearLayout mWapper;
// 菜单,内容页
private ViewGroup mMenu;
private ViewGroup mContent;
// 屏幕宽度
private int mScreenWidth;
// 菜单宽度
private int mMenuWidth;
// dp,菜单与屏幕右侧的距离(dp)
private int mMenuRightPadding = 50;
// 避免多次调用onMeasure的标志
private boolean once;
private boolean isOpen;
/**
* 未使用自定义属性时,调用
*
* @param context
* @param attrs
*/
public SlidingMenu(Context context, AttributeSet attrs) {
this(context, attrs, 0);
}
/**
* 当使用了自定义属性(attr.xml)时,会调用此构造方法
* 自定义View需要实现带有Context、AttributeSet这2个参数的构造方法,否则自定义参数会出错
*
* @param context
* @param attrs
* @param defStyle
*/
public SlidingMenu(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
// 获取我们定义的属性
TypedArray a = context.getTheme().obtainStyledAttributes(attrs,
R.styleable.SlidingMenu, defStyle, 0);
int n = a.getIndexCount();
for (int i = 0; i < n; i++) {
int attr = a.getIndex(i);
switch (attr) {
case R.styleable.SlidingMenu_rightPadding:
mMenuRightPadding = a.getDimensionPixelSize(attr,
(int) TypedValue.applyDimension(
TypedValue.COMPLEX_UNIT_DIP, 50, context
.getResources().getDisplayMetrics()));
break;
}
}
a.recycle();
// 获取屏幕的宽度
WindowManager wm = (WindowManager) context
.getSystemService(Context.WINDOW_SERVICE);
DisplayMetrics outMetrics = new DisplayMetrics();
wm.getDefaultDisplay().getMetrics(outMetrics);
mScreenWidth = outMetrics.widthPixels;// 屏幕的宽度
}
public SlidingMenu(Context context) {
this(context, null);
}
/**
* 设置子View的宽高,决定自身View的宽高,每次启动都会调用此方法
*/
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
if (!once)// 使其只调用一次
{
// this指的是HorizontalScrollView,获取各个元素
mWapper = (LinearLayout) this.getChildAt(0);// 第一个子元素
// HorizontalScrollView下LinearLayout的第一个子元素,即left_menu.xml
mMenu = (ViewGroup) mWapper.getChildAt(0);
// HorizontalScrollView下LinearLayout的第二个子元素,即qq页面
mContent = (ViewGroup) mWapper.getChildAt(1);
// 设置子View的宽高,高于屏幕一致
mMenuWidth = mMenu.getLayoutParams().width = mScreenWidth
- mMenuRightPadding;// 菜单的宽度=屏幕宽度-右边距
// 内容宽度=屏幕宽度
// 决定自身View的宽高,高于屏幕一致
// 由于这里的LinearLayout里只包含了Menu和Content所以就不需要额外的去指定自身的宽
mContent.getLayoutParams().width = mScreenWidth;
once = true;
}
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
}
/**
* 通过设置偏移量,将menu隐藏
* //设置View的位置,首先,先将Menu隐藏(在eclipse中ScrollView的画面内容(非滚动条)正数表示向左移,向上移)
*/
@Override
protected void onLayout(boolean changed, int l, int t, int r, int b) {
super.onLayout(changed, l, t, r, b);
// 刚载入界面的时候隐藏Menu菜单也就是ScrollView向左滑动菜单自身的大小
if (changed) {
// 向左滑动,相当于把右边的内容页拖到正中央,菜单隐藏
this.scrollTo(mMenuWidth, 0);
}
}
/*
* 触屏事件的处理
*/
@Override
public boolean onTouchEvent(MotionEvent ev) {
int action = ev.getAction();
switch (action) {
case MotionEvent.ACTION_UP:
// 隐藏在左边的宽度
int scrollX = getScrollX();// 滑动的距离scrollTo方法里,也就是onMeasure方法里的向左滑动那部分
if (scrollX >= mMenuWidth / 2) {
// 向左滑动展示内容
this.smoothScrollTo(mMenuWidth, 0);
isOpen = false;
} else {
this.smoothScrollTo(0, 0);
isOpen = true;
}
return true;
}
return super.onTouchEvent(ev);
}
/**
* 打开菜单
*/
public void openMenu() {
if (isOpen)
return;
this.smoothScrollTo(0, 0);
isOpen = true;
}
public void closeMenu() {
if (!isOpen)
return;
this.smoothScrollTo(mMenuWidth, 0);
isOpen = false;
}
/**
* 切换菜单
*/
public void toggle() {
if (isOpen) {
closeMenu();
} else {
openMenu();
}
}
/**
* 滚动发生时,使菜单和内容有缩放的效果。
*/
@Override
protected void onScrollChanged(int l, int t, int oldl, int oldt) {
super.onScrollChanged(l, t, oldl, oldt);
float scale = l * 1.0f / mMenuWidth; // 1 ~ 0
/**
* 区别1:内容区域1.0~0.7 缩放的效果 scale : 1.0~0.0 0.7 + 0.3 * scale
*
* 区别2:菜单的偏移量需要修改
*
* 区别3:菜单的显示时有缩放以及透明度变化 缩放:0.7 ~1.0 1.0 - scale * 0.3 透明度 0.6 ~ 1.0 0.6+
* 0.4 * (1- scale) ;
*
*/
float rightScale = 0.7f + 0.3f * scale;
float leftScale = 1.0f - scale * 0.3f;
float leftAlpha = 0.6f + 0.4f * (1 - scale);
// 调用属性动画,设置TranslationX
ViewHelper.setTranslationX(mMenu, mMenuWidth * scale * 0.8f);
ViewHelper.setScaleX(mMenu, leftScale);
ViewHelper.setScaleY(mMenu, leftScale);
// 设置菜单透明度
ViewHelper.setAlpha(mMenu, leftAlpha);
// 设置content的缩放的中心点
ViewHelper.setPivotX(mContent, 0);
ViewHelper.setPivotY(mContent, mContent.getHeight() / 2);
ViewHelper.setScaleX(mContent, rightScale);
ViewHelper.setScaleY(mContent, rightScale);
}
}
</span>
(3)activity_main.xml
<span style="font-size:14px;"><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:hyman="http://schemas.android.com/apk/res/com.imooc.slidingmenu"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<com.imooc.slidingmenu.view.SlidingMenu
android:id="@+id/id_menu"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/bg"
hyman:rightPadding="80dp" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="horizontal" >
<include layout="@layout/left_menu" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/qq" >
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="toggleMenu"
android:text="切换菜单" />
</LinearLayout>
</LinearLayout>
</com.imooc.slidingmenu.view.SlidingMenu>
</RelativeLayout></span>
(3)attr.xml
<span style="font-size:14px;"><?xml version="1.0" encoding="utf-8"?>
<resources>
<attr name="rightPadding" format="dimension"></attr>
<declare-styleable name="SlidingMenu">
<attr name="rightPadding"></attr>
</declare-styleable>
</resources></span>
以下图所示是自定义属性attr.xml的使用:
下载源代码