自定义属性:1.书写xml文件 values/attr.xml
2.在布局文件中进行使用,特别注意xmlns
3.在构造方法中(3个参数的构造方法)中获取我们设置的值
自定义View 1.onMeasure决定内部View(子view)的宽和高,以及自己的宽和高
2.onLayout 决定子View的放置的位置
3.onTouchEvent添加点击事件
动画效果使用:nineoldandroids.jar
废话不多说了,上代码,随便写的,很low但是基本上的功能都有了:
主布局:activity_main.xml
xmlns:hello="http://schemas.android.com/apk/res/com.my.slidingmenu" 添加
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
android:layout_width="fill_parent"
android:layout_height="fill_parent"
hyman:rightPadding="100dp">
android:layout_height="match_parent"
android:orientation="horizontal">
android:layout_height="match_parent"
android:background="@drawable/ic_launcher">
左部隐藏的菜单MENU:left_menu.xml
android:layout_height="match_parent" >
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:orientation="vertical">
android:layout_height="wrap_content">
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_centerVertical="true"
android:layout_marginLeft="20dp"
android:layout_marginTop="20dp"
android:src="@drawable/ic_launcher"/>
android:layout_height="wrap_content"
android:textSize="20sp"
android:text="第一个Item"
android:layout_toRightOf="@id/img1"
android:layout_centerVertical="true"/>
android:layout_height="wrap_content">
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_centerVertical="true"
android:layout_marginLeft="20dp"
android:layout_marginTop="20dp"
android:src="@drawable/ic_launcher"/>
android:layout_height="wrap_content"
android:textSize="20sp"
android:text="第一个Item"
android:layout_toRightOf="@id/img2"
android:layout_centerVertical="true"/>
android:layout_height="wrap_content">
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_centerVertical="true"
android:layout_marginLeft="20dp"
android:layout_marginTop="20dp"
android:src="@drawable/ic_launcher"/>
android:layout_height="wrap_content"
android:textSize="20sp"
android:text="第一个Item"
android:layout_toRightOf="@id/img3"
android:layout_centerVertical="true"/>
android:layout_height="wrap_content">
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_centerVertical="true"
android:layout_marginLeft="20dp"
android:layout_marginTop="20dp"
android:src="@drawable/ic_launcher"/>
android:layout_height="wrap_content"
android:textSize="20sp"
android:text="第一个Item"
android:layout_toRightOf="@id/img4"
android:layout_centerVertical="true"/>
android:layout_height="wrap_content">
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_centerVertical="true"
android:layout_marginLeft="20dp"
android:layout_marginTop="20dp"
android:src="@drawable/ic_launcher"/>
android:layout_height="wrap_content"
android:textSize="20sp"
android:text="第一个Item"
android:layout_toRightOf="@id/img5"
android:layout_centerVertical="true"/>
自定义View使用的XML:values/attr.xml
主类代码实现:MainActivity
public class MainActivity extends Activity {
private SlidingMenu mLeftMenu;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mLeftMenu = (SlidingMenu) findViewById(R.id.menu);
}
public void toggleMenu(View view) {
// TODO Auto-generated method stub
mLeftMenu.toggle();
}
}
左部菜单MENU的逻辑,动画,透明度,偏移量等的设置:SlidingMenu.java
public class SlidingMenu extends HorizontalScrollView{
/*
* 自定义属性:1.书写xml文件 values/attr.xml
* 2.在布局文件中进行使用,特别注意xmlns
* 3.在构造方法中(3个参数的构造方法)中获取我们设置的值
* */
private LinearLayout mWapper;
private ViewGroup mMenu;
private ViewGroup mContent;
private int mMenuWidth;
private int mScreenWidth;
private int mMenuRightPadding = 50;//菜单menu到右侧的距离
private boolean once = false;
private boolean isOpen = false;
/*
* 自定义View 1.onMeasure决定内部View(子view)的宽和高,以及自己的宽和高
* 2.onLayout 决定子View的放置的位置
* 3.onTouchEvent
* 未使用自定义属性时,调用
* */
public SlidingMenu(Context context, AttributeSet attrs) {
this(context, attrs, 0);
}
/*
* 当使用了自定义属性时,会调用此构造方法
* */
public SlidingMenu(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
//获取我们定义的属性
TypedArray a = context.getTheme().obtainStyledAttributes(attrs, R.styleable.SlidingMenu_rightPadding, 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_rightPadding:
mMenuRightPadding = a.getDimensionPixelSize(attr, (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 50, context.getResources().getDisplayMetrics()));
break;
default:
break;
}
}
a.recycle();
WindowManager wm = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
DisplayMetrics outMetrics = new DisplayMetrics();
wm.getDefaultDisplay().getMetrics(outMetrics);
mScreenWidth = outMetrics.widthPixels;
// //把dp转化为px
// mMenuRightPadding = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 50, context.getResources().getDisplayMetrics());
}
public SlidingMenu(Context context) {
this(context, null);
// TODO Auto-generated constructor stub
}
/*
* 设置子view的宽和高
* */
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
if (!once) {
mWapper = (LinearLayout) getChildAt(0);
mMenu = (ViewGroup) mWapper.getChildAt(0);
mContent = (ViewGroup) mWapper.getChildAt(1);
mMenuWidth = mMenu.getLayoutParams().width = mScreenWidth - mMenuRightPadding;
mContent.getLayoutParams().width = mScreenWidth;
once = true;
}
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
}
/*
* 通过设置偏移量,将menu隐藏
* */
@Override
protected void onLayout(boolean changed, int l, int t, int r, int b) {
// TODO Auto-generated method stub
super.onLayout(changed, l, t, r, b);
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();
if (scrollX >= mMenuWidth / 2) {
this.smoothScrollTo(mMenuWidth, 0);
isOpen = false;
}else {
this.smoothScrollTo(0, 0);
isOpen = true;
}
return true;
}
return super.onTouchEvent(ev);
}
//打开菜单
private void openMenu() {
// TODO Auto-generated method stub
if(isOpen)return;
this.smoothScrollTo(0, 0);
isOpen = true;
}
private void closeMenu(){
if(!isOpen)return;
this.smoothScrollTo(mMenuWidth, 0);
isOpen = false;
}
//切换菜单
public void toggle() {
// TODO Auto-generated method stub
if (isOpen) {
closeMenu();
}else {
openMenu();
}
}
/*
* 滚动发生的时候
* */
@Override
protected void onScrollChanged(int l, int t, int oldl, int oldt) {
// TODO Auto-generated method stub
super.onScrollChanged(l, t, oldl, oldt);
float scale = l * 1.0f/mMenuWidth;
/*
* 区别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);
//设置缩放的中心点
ViewHelper.setPivotX(mContent, 0);
ViewHelper.setPivotY(mContent, mContent.getHeight());
ViewHelper.setScaleX(mContent, rightScale);
ViewHelper.setScaleY(mContent, rightScale);
}
}
代码下载地址:http://download.csdn.net/detail/weimo1234/9279679