Android棒棒糖菜单按钮返回按钮渲染

时间:2014-11-26 09:18:23

标签: android eclipse image android-animation android-5.0-lollipop

如果您看到Google Play应用,则在点按菜单时,menu button会逐渐将手指逐渐转换为back button,这似乎不是动画。任何人都可以帮助我实现这个目标吗? 随意移动/关闭帖子,但请在任何有用的方向重定向我。

enter image description here enter image description here enter image description here enter image description here

1 个答案:

答案 0 :(得分:0)

可以使用AnimatedStateListDrawable实现图标转换(还支持动画矢量图标。)

e.g。

 public void setOrAnimatePlusCheckIcon(final ImageView imageView, boolean isCheck,
                                      boolean allowAnimate) {
    if (!hasL()) {
        compatSetOrAnimatePlusCheckIcon(imageView, isCheck, allowAnimate);
        return;
    }

    Drawable drawable = imageView.getDrawable();
    if (!(drawable instanceof AnimatedStateListDrawable)) {
        drawable = mActivity.getResources().getDrawable(R.drawable.add_schedule_fab_icon_anim);
        imageView.setImageDrawable(drawable);
    }
    imageView.setColorFilter(isCheck ?
            mActivity.getResources().getColor(R.color.theme_accent_1) : Color.WHITE);
    if (allowAnimate) {
        imageView.setImageState(isCheck ? STATE_UNCHECKED : STATE_CHECKED, false);
        drawable.jumpToCurrentState();
        imageView.setImageState(isCheck ? STATE_CHECKED : STATE_UNCHECKED, false);
    } else {
        imageView.setImageState(isCheck ? STATE_CHECKED : STATE_UNCHECKED, false);
        drawable.jumpToCurrentState();
    }
}
来自https://github.com/google/iosched

代码