Android之卫星菜单的实现

  卫星菜单是现在一个非常受欢迎的“控件”,很多Android程序员都趋之若鹜,预览如下图。传统的卫星菜单是用Animation实现的,需要大量的代码,而且算法极多,一不小心就要通宵Debug。本帖贴出用属性动画Animator来实现卫星菜单。

Android之卫星菜单的实现

一、浅析属性动画Animator

  Animator是Android3.0发布的新功能,代码简单,效果丰富。属性动画,顾名思义,只要是可以GET和SET的属性,我们都可以用属性动画进行处理。属性动画中常用的属性和方法如下:

ValueAnimator  //数值发生器,可以实现很多很灵活的动画效果
ObjectAnimator //ValueAnimator的子类,对ValueAnimator进行了封装,让我们可以更轻松的使用属性动画,我们通过ObjectAnimator来操纵一个对象,产生动画效果
AnimatorListener //对动画的开始、结束、暂停、重复等动作的事件监听(需要重写四个方法)
AnimatorListenerAdapter //对动画的开始、结束、暂停、重复中的一个动作的事件监听(根据选择的动作,只需要重写一个方法)
AnimatorSet //动画的集合,用来设置多个动画之间的关系(之前、之后、同时等)
PropertyValuesHolder //动画的集合,和AnimatorSet类似
TypeEvaluator //值计算器,在使用ValueAnimator.ofObject()方法时引入自定义的属性对象
Interpolator //插值器,设置动画的特效(速度渐变、弹跳等)

下面对这几个类做一下简单的介绍:

(一)ObjectAnimator:ObjectAnimator是最简单、最常用的属性动画,根据文档上的叙述: This subclass of ValueAnimator provides support for animating properties on target objects. ,这个ValueAnimator的子类对Object对象的属性提供动画。ObjectAnimator中常用的属性如下:

translationX / translationY             水平/垂直平移
rotaionX / rotationY 横向/纵向旋转
scaleX / scaleY 水平/垂直缩放
X / Y 直接到达X/Y坐标
alpha 透明度

我们使用一些方法( ofFloat() 、 ofInt() 、 ofObject() 、 ofPropertyValuesHolder() 等)来实现动画,调用 start() 方法来启动动画。选择哪个方法,主要是属性值的类型决定的。我们先来看看文档中对这几个方法的介绍:

Android之卫星菜单的实现

target指的是动画的作用对象,一般指控件;propertyName就是上面说的“translationX”、“alpha”等属性名;values是一个不定长数组,记录着属性的始末值。唯一不同的是ofPropertyValuesHolder()方法,这个方法没有property参数,是因为这个参数在PropertyValuesHolder对象中就已经使用(下面会介绍PropertyValuesHolder的使用方法)。

(二)AnimatorListener:这是一个接口,监听属性动画的状态(开始/重复/结束/取消),Animator及其子类(包括ValueAnimator和ObjectAnimator等)都可以使用这个接口,使用 anim.addListener() 使用这个接口。具体的使用方法如下:

animator.addListener(new AnimatorListener() {
@Override // 动画开始的监听器
public void onAnimationStart(Animator animation) { ... }
@Override // 动画重复的监听器
public void onAnimationRepeat(Animator animation) { ... }
@Override // 动画结束的监听器
public void onAnimationEnd(Animator animation) { ... }
@Override // 动画取消的监听器
public void onAnimationCancel(Animator animation) { ... }
});

(三)AnimatorListenerAdapter:我们在实际开发中往往不会用到AnimatorListener中的全部四个方法,所以如果我们使用AnimatorListener,不仅浪费系统资源,代码看上去也不好看,因此,我们需要一个适配器(Adapter),可以让我们根据自己的意愿,只实现监听器中的一个或几个方法,这就要用到AnimatorListenerAdapter了。AnimatorListenerAdapter的使用方法和AnimatorListener一样,都需要使用 anim.addListener() 方法,不同的是参数。代码如下:

animator.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) { ... }
@Override
public void onAnimationCancel(Animator animation) { ... }
});

(四)AnimatorSet:先来看文档中的介绍: This class plays a set of Animator objects in the specified order. Animations can be set up to play together, in sequence, or after a specified delay.  这个类支持按顺序播放一系列动画,这些动画可以同时播放、按顺序播放,也可以在一段时间之后播放(主要通过 setStartDelay() 方法实现)。下面是文档中对这些方法的介绍:
Android之卫星菜单的实现

值得说的是play()方法,它返回的是一个Builder对象,而Builder对象可以通过 with() 、 before() 、 after() 等方法,非常方便的控制一个动画与其他Animator动画的先后顺序。例如:

AnimatorSet s = new AnimatorSet();
s.play(anim1).with(anim2);
s.play(anim2).before(anim3);
s.play(anim4).after(anim3);

(五)PropertyValuesHolder:使用PropertyValuesHolder结合ObjectAnimator或ValueAnimator,可以达到AnimatorSet的效果。可以说,PropertyValuesHolder就是为了动画集而存在的,它不能单独的存在,因为它没有target参数(因此可以节省系统资源),所以只能依靠ObjectAnimator或ValueAnimator存在。一个实例的代码如下:

PropertyValuesHolder pvh1 = PropertyValuesHolder.ofFloat("translationX", 0F, 200F);
PropertyValuesHolder pvh2 = PropertyValuesHolder.ofFloat("translationY", 0F, 200F);
PropertyValuesHolder pvh3 = PropertyValuesHolder.ofFloat("rotation", 0F, 360F);
ObjectAnimator.ofPropertyValuesHolder(top, pvh1, pvh2, pvh3).setDuration(2000).start();

(六)ValueAnimator:是ObjectAnimator的父类,但由于不能相应动画,也不能设置属性(值的是没有target和property两个参数),所以不常用。如果我们要监听ValueAnimator,则只能为ValueAnimator添加一个AnimatorUpdateListener(AnimatorUpdateListener可以监听Animator每个瞬间的变化,取出对应的值)。一个实例的代码如下:

ValueAnimator animator = ValueAnimator.ofInt(0, 100); // 没有target和property参数
animator.setDuration(5000);
animator.addUpdateListener(new AnimatorUpdateListener() {
@Override
public void onAnimationUpdate(ValueAnimator animation) {
Integer value = (Integer) animation.getAnimatedValue();
System.out.println("-->" + value);
}
});
animator.start();

(七)TypeEvaluator:主要用于ValueAnimator的ofObject()方法。根据文档中的介绍, Evaluators allow developers to create animations on arbitrary property types ,Evaluators允许开发者自定义动画参数。因此,使用TypeEvaluator,我们可以打破ObjectAnimator的动画范围禁锢,创造我们自己的动画。大致代码如下:

ValueAnimator animator = ValueAnimator.ofObject(new TypeEvaluator<Object>() {
@Override
public Object evaluate(float fraction, Object startValue, Object endValue) {
return null;
}
});
animator.start();

(八)Interpolator:插值器,可以设置动画的效果。Animator内置了很多插值器,如渐加速、渐减速、弹跳等等。插值器的种类可以在模拟器API DEMO应用的Views - Animation - Interpolator中查看。为Animator添加插值器只需要 animator.setInterpolator(new OvershootInterpolator()); 即可。

二、实现卫星菜单

  实现卫星菜单,我们主要使用了ObjectAnimator。先来介绍一下这个DEMO的效果(如下组图):开始的时候在屏幕左上角显示一个红色的按钮,点击之后弹出一列子菜单,每个子菜单之间的距离递增,弹出的时间递减,弹出时会有OverShoot效果,点击每个子菜单都会弹出相应的Toast;弹出菜单后再次点击红色按钮,则收回所有子菜单。

Android之卫星菜单的实现

下面贴出代码。

 <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"
android:background="@color/white" > <!-- 上面的七张图片是七个子菜单 -->
<ImageView
android:id="@+id/menuitem_07"
style="@style/SateliteMenu_Item_Theme"
android:contentDescription="@string/app_name"
android:src="@drawable/item_07" /> <ImageView
android:id="@+id/menuitem_06"
style="@style/SateliteMenu_Item_Theme"
android:contentDescription="@string/app_name"
android:src="@drawable/item_06" /> <ImageView
android:id="@+id/menuitem_05"
style="@style/SateliteMenu_Item_Theme"
android:contentDescription="@string/app_name"
android:src="@drawable/item_05" /> <ImageView
android:id="@+id/menuitem_04"
style="@style/SateliteMenu_Item_Theme"
android:contentDescription="@string/app_name"
android:src="@drawable/item_04" /> <ImageView
android:id="@+id/menuitem_03"
style="@style/SateliteMenu_Item_Theme"
android:contentDescription="@string/app_name"
android:src="@drawable/item_03" /> <ImageView
android:id="@+id/menuitem_02"
style="@style/SateliteMenu_Item_Theme"
android:contentDescription="@string/app_name"
android:src="@drawable/item_02" /> <ImageView
android:id="@+id/menuitem_01"
style="@style/SateliteMenu_Item_Theme"
android:contentDescription="@string/app_name"
android:src="@drawable/item_01" /> <!-- 最上层的红色按钮,因为它显示在最上面,因此布局代码在最后 -->
<ImageView
android:id="@+id/menu_top"
android:layout_width="35.0dip"
android:layout_height="35.0dip"
android:layout_marginLeft="17.0dip"
android:layout_marginTop="17.0dip"
android:contentDescription="@string/app_name"
android:src="@drawable/top_toopen" /> </RelativeLayout>

MainActivity布局代码

 public class MainActivity extends Activity implements OnClickListener {
private ImageView top; // 红色按钮
// 七个子菜单的ID组成的数组
private int[] ids = new int[] { R.id.menuitem_01, R.id.menuitem_02, R.id.menuitem_03, R.id.menuitem_04, R.id.menuitem_05, R.id.menuitem_06, R.id.menuitem_07, };
private List<ImageView> itemList; // 七个子菜单都加到List中
private boolean isMenuOpen; // 记录子菜单是否打开了 @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
initView();
} private void initView() {
top = (ImageView) findViewById(R.id.menu_top);
top.setOnClickListener(this); itemList = new ArrayList<ImageView>();
for (int i = 0; i < ids.length; i++) {
ImageView imageView = (ImageView) findViewById(ids[i]);
imageView.setOnClickListener(this);
itemList.add(imageView);
}
} @Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.menu_top:
if (!isMenuOpen) { // 如果子菜单处于关闭状态,则使用Animator动画打开菜单
for (int i = 0; i < itemList.size(); i++) {
// 子菜单之间的间距对着距离的增加而递增
ObjectAnimator animator = ObjectAnimator.ofFloat(itemList.get(i), "translationY", 0, (i + 1) * (30 + 2 * i));
animator.setDuration((7 - i) * 100); // 最远的子菜单弹出速度最快
animator.setInterpolator(new OvershootInterpolator()); // 设置插值器
animator.start();
}
top.setImageResource(R.drawable.top_toclose);
isMenuOpen = true;
} else { // 如果子菜单处于打开状态,则使用Animator动画关闭菜单
for (int i = 0; i < itemList.size(); i++) {
ObjectAnimator animator = ObjectAnimator.ofFloat(itemList.get(i), "translationY", (i + 1) * (30 + 2 * i), 0);
animator.setDuration((7 - i) * 100);
animator.start();
}
top.setImageResource(R.drawable.top_toopen);
isMenuOpen = false;
}
break;
default:
Toast.makeText(MainActivity.this, "Item" + (itemList.indexOf(v) + 1) + " Clicked...", Toast.LENGTH_SHORT).show();
break;
}
}
}

MainActivity代码

三、扩展

  使用属性动画可以实现的功能还有很多,这里再追加一个“评分”的功能实现。直接显示成绩往往给人一种突兀的感觉,所以我们想利用属性动画来实现一个数字变换的“成绩单”,让成绩滚动显示,同时,越到最后滚动的越慢,最后停止在真正的分数上。

  思路:我们需要用到ValueAnimator,并用AnimatorUpdateListener作为动画的监听器,监听动画的每一个动作,并为成绩的TextView设置Text。

  以下是代码。

 <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"
android:background="@color/white" > <TextView
android:id="@+id/main_mark"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:textColor="#ff0000"
android:textSize="65.0sp" /> </RelativeLayout>

MainActivity布局代码

 public class MainActivity extends Activity {
private TextView mark;
private static final int REAL_MARK = 96; @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
initView();
} private void initView() {
mark = (TextView) findViewById(R.id.main_mark); ValueAnimator animator = ValueAnimator.ofInt(0, REAL_MARK);
animator.setDuration(3000);
animator.setInterpolator(new DecelerateInterpolator());
animator.addUpdateListener(new AnimatorUpdateListener() {
@Override
public void onAnimationUpdate(ValueAnimator animation) {
Integer value = (Integer) animation.getAnimatedValue();
mark.setText(value + "");
}
});
animator.start();
}
}

MainActivity代码

上一篇:Object常用方法


下一篇:MySQL慢查询日志释疑总结