首页 > 代码库 > 安卓环形菜单(处理了菜单键和返回键+加入了动画)
安卓环形菜单(处理了菜单键和返回键+加入了动画)
废话不多说,先看效果图:
<RelativeLayout 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" > <RelativeLayout android:id="@+id/level1" android:layout_width="100dp" android:layout_height="50dp" android:layout_alignParentBottom="true" android:layout_centerHorizontal="true" android:background="@drawable/level1" > <ImageView android:id="@+id/icon_home" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true" android:background="@drawable/icon_home" /> </RelativeLayout> <RelativeLayout android:id="@+id/level2" android:layout_width="180dp" android:layout_height="90dp" android:layout_alignParentBottom="true" android:layout_centerHorizontal="true" android:background="@drawable/level2" > <ImageView android:id="@+id/icon_search" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:layout_alignParentLeft="true" android:layout_marginBottom="10dp" android:layout_marginLeft="10dp" android:background="@drawable/icon_search" /> <ImageView android:id="@+id/icon_menu" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerHorizontal="true" android:layout_marginTop="5dp" android:background="@drawable/icon_menu" /> <ImageView android:id="@+id/icon_myyouku" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:layout_alignParentRight="true" android:layout_marginBottom="10dp" android:layout_marginRight="10dp" android:background="@drawable/icon_myyouku" /> </RelativeLayout> <RelativeLayout android:id="@+id/level3" android:layout_width="280dp" android:layout_height="140dp" android:layout_alignParentBottom="true" android:layout_centerHorizontal="true" android:background="@drawable/level3" > <ImageView android:id="@+id/channel1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:layout_alignParentLeft="true" android:layout_marginBottom="10dp" android:layout_marginLeft="10dp" android:background="@drawable/channel1" /> <ImageView android:id="@+id/channel2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_above="@id/channel1" android:layout_alignLeft="@id/channel1" android:layout_marginBottom="10dp" android:layout_marginLeft="20dp" android:background="@drawable/channel2" /> <ImageView android:id="@+id/channel3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_above="@id/channel2" android:layout_alignLeft="@id/channel2" android:layout_marginBottom="5dp" android:layout_marginLeft="30dp" android:background="@drawable/channel3" /> <ImageView android:id="@+id/channel4" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerHorizontal="true" android:layout_marginTop="10dp" android:background="@drawable/channel4" /> <ImageView android:id="@+id/channel7" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:layout_alignParentRight="true" android:layout_marginBottom="10dp" android:layout_marginRight="10dp" android:background="@drawable/channel7" /> <ImageView android:id="@+id/channel6" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_above="@id/channel7" android:layout_alignRight="@id/channel7" android:layout_marginBottom="10dp" android:layout_marginRight="20dp" android:background="@drawable/channel6" /> <ImageView android:id="@+id/channel5" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_above="@id/channel6" android:layout_alignRight="@id/channel6" android:layout_marginBottom="5dp" android:layout_marginRight="30dp" android:background="@drawable/channel5" /> </RelativeLayout> </RelativeLayout>
package com.example.circlemenuofbottom.anim; import android.view.animation.RotateAnimation; import android.widget.RelativeLayout; /** * @author lzd * * QQ : 2622596982 * * email : anroid_lzd@163.com * * QQ 交流群 :277599214 */ public class MyAnimationUtils { /** * 出去的动画---顺时针出 * * @param view * 执行动画的对象 */ public static void animaOut(RelativeLayout view) { /* * RotateAnimation animation = new RotateAnimation(0, 180, * view.getWidth() / 2, view.getHeight()); animation.setDuration(500); * animation.setFillAfter(true); view.startAnimation(animation); */ animaOut(view, 0); } /** * 出去的动画---逆时针进 * * @param view * 执行动画的对象 */ public static void animaIn(RelativeLayout view) { /* * // 顺时针进 // RotateAnimation animation = new RotateAnimation(180, // * 360,view.getWidth() / 2, view.getHeight()); // 逆时针进 RotateAnimation * animation = new RotateAnimation(-180, -360, view.getWidth() / * 2,view.getHeight()); animation.setDuration(500); * animation.setFillAfter(true); view.startAnimation(animation); */ animaIn(view, 0); } /** * 出去的动画---顺时针出 * * @param view * 执行动画的对象 * @param offSetTime * 延时执行的时间 */ public static void animaOut(RelativeLayout view, int offSetTime) { RotateAnimation animation = new RotateAnimation(0, 180, view.getWidth() / 2, view.getHeight()); animation.setDuration(500); animation.setStartOffset(offSetTime); animation.setFillAfter(true); view.startAnimation(animation); } public static void animaIn(RelativeLayout view, int offSetTime) { // 顺时针进 // RotateAnimation animation = new RotateAnimation(180, // 360,view.getWidth() / 2, view.getHeight()); // 逆时针进 RotateAnimation animation = new RotateAnimation(-180, -360, view.getWidth() / 2, view.getHeight()); animation.setDuration(500); animation.setStartOffset(offSetTime); animation.setFillAfter(true); view.startAnimation(animation); } }
按键的处理思路:
/* * 监听菜单键,当用户点击菜单键的时候,显示和隐藏一级和二级菜单 * * 监听返回键,再按一次退出程序 */ private long exitTime = 0; @Override public boolean onKeyDown(int keyCode, KeyEvent event) { // 菜单键的处理 if(event.getAction() == KeyEvent.ACTION_DOWN && keyCode == KeyEvent.KEYCODE_MENU){ // 如果 一级菜单显示,隐藏 全部 if(isShowLevel1){ MyAnimationUtils.animaOut(level); isShowLevel1 = false; if(isShowLevel2){ MyAnimationUtils.animaOut(level2,120); isShowLevel2 = false; if(isShowLevel3){ MyAnimationUtils.animaOut(level3,120); isShowLevel3 = false; } } }else{ // 如果一级菜单式隐藏的,显示 一,二级菜单 MyAnimationUtils.animaIn(level); MyAnimationUtils.animaIn(level2, 120); isShowLevel1 = true; isShowLevel2 = true; } } // 返回键 if(event.getAction() == KeyEvent.ACTION_DOWN && keyCode == KeyEvent.KEYCODE_BACK){ if(System.currentTimeMillis() - exitTime > 2000){ Toast.makeText(this, "再按一次返回键退出", Toast.LENGTH_SHORT).show(); exitTime = System.currentTimeMillis(); }else{ finish(); System.exit(0); } return true; } return super.onKeyDown(keyCode, event); }
没有什么可以好说的,仔细看看就全懂了,若还有疑问,请联系我 或者 到群里交流。
最后附上下载地址 : http://download.csdn.net/detail/escdelete/8340545
安卓环形菜单(处理了菜单键和返回键+加入了动画)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。