RoateMenus,一个有动画的Menu菜单

我们先来看看效果

源码下载链接

https://github.com/yukunkun/RoateMenus

我的github有效果图

很多的自定义View


点击图片实现动画让菜单展开

参考于启舰博客

自定义控件三部曲之动画篇(十)——联合动画的XML实现与使用示例

使用属性动画实现menus菜单,路径可以自己参考实现.完成自己定义大小位置.

mainactivity

package com.yukun.routemenus;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;

import butterknife.ButterKnife;

public class MainActivity extends AppCompatActivity implements View.OnClickListener {

private Button mMenuButton;
private Button mItemButton1;
private Button mItemButton2;
private Button mItemButton3;
private Button mItemButton4;
private Button mItemButton5;
private boolean mIsMenuOpen = false;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    ButterKnife.bind(this);
    init();
}

private void init() {
    mMenuButton = (Button) findViewById(R.id.menu);
    mMenuButton.setOnClickListener(this);

    mItemButton1 = (Button) findViewById(R.id.item1);
    mItemButton1.setOnClickListener(this);

    mItemButton2 = (Button) findViewById(R.id.item2);
    mItemButton2.setOnClickListener(this);

    mItemButton3 = (Button) findViewById(R.id.item3);
    mItemButton3.setOnClickListener(this);

    mItemButton4 = (Button) findViewById(R.id.item4);
    mItemButton4.setOnClickListener(this);

    mItemButton5 = (Button) findViewById(R.id.item5);
    mItemButton5.setOnClickListener(this);
}

@Override
public void onClick(View v) {
    if (v == mMenuButton) {
        if (!mIsMenuOpen) {
            mIsMenuOpen = true;
            AnimUtils.doAnimateOpen(mItemButton1, 0, 5, 300);
            AnimUtils.doAnimateOpen(mItemButton2, 1, 5, 300);
            AnimUtils.doAnimateOpen(mItemButton3, 2, 5, 300);
            AnimUtils.doAnimateOpen(mItemButton4, 3, 5, 300);
            AnimUtils.doAnimateOpen(mItemButton5, 4, 5, 300);
        } else {
            mIsMenuOpen = false;
            AnimUtils.doAnimateClose(mItemButton1, 0, 5, 300);
            AnimUtils.doAnimateClose(mItemButton2, 1, 5, 300);
            AnimUtils.doAnimateClose(mItemButton3, 2, 5, 300);
            AnimUtils.doAnimateClose(mItemButton4, 3, 5, 300);
            AnimUtils.doAnimateClose(mItemButton5, 4, 5, 300);
        }
    } else {
        Toast.makeText(this, "你点击了", Toast.LENGTH_SHORT).show();
    }
}

}

AnimUtils方法

使用了属性动画ObjectAnimator类,可以参考启舰的博客看看

packublic class AnimUtils {

public static void doAnimateOpen(View view, int index, int total, int radius) {
    if (view.getVisibility() != View.VISIBLE) {
        view.setVisibility(View.VISIBLE);
    }
    double degree = Math.toRadians(90)/(total - 1) * index;
    int translationX = -(int) (radius * Math.sin(degree));
    int translationY = -(int) (radius * Math.cos(degree));

    AnimatorSet set = new AnimatorSet();
    //包含平移、缩放和透明度动画
    set.playTogether(
            ObjectAnimator.ofFloat(view, "translationX", 0, translationX),
            ObjectAnimator.ofFloat(view, "translationY", 0, translationY),
            ObjectAnimator.ofFloat(view, "scaleX", 0f, 1f),
            ObjectAnimator.ofFloat(view, "scaleY", 0f, 1f),
            ObjectAnimator.ofFloat(view, "alpha", 0f, 1));
    //动画周期为500ms
    set.setDuration(1 * 400).start();
}

public static void doAnimateClose(final View view, int index, int total,
                            int radius) {
    if (view.getVisibility() != View.VISIBLE) {
        view.setVisibility(View.VISIBLE);
    }
    double degree = Math.PI * index / ((total - 1) * 2);
    int translationX = -(int) (radius * Math.sin(degree));
    int translationY = -(int) (radius * Math.cos(degree));
    AnimatorSet set = new AnimatorSet();
    //包含平移、缩放和透明度动画
    set.playTogether(
            ObjectAnimator.ofFloat(view, "translationX", translationX, 0),
            ObjectAnimator.ofFloat(view, "translationY", translationY, 0),
            ObjectAnimator.ofFloat(view, "scaleX", 1f, 0.1f), //bug
            ObjectAnimator.ofFloat(view, "scaleY", 1f, 0.1f),
            ObjectAnimator.ofFloat(view, "alpha", 1f, 0f));

    set.setDuration(1 * 400).start();
    }
}

布局文件如下,其实比较简单,只是布局在一起的很多个按钮

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout 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"
tools:context="com.yukun.routemenus.MainActivity">
<Button
    android:id="@+id/menu"
    style="@style/MenuStyle"
    android:background="@drawable/menu"/>

<Button
    android:id="@+id/item1"
    style="@style/MenuItemStyle"
    android:background="@drawable/circle5"
    android:visibility="gone"/>

<Button
    android:id="@+id/item2"
    style="@style/MenuItemStyle"
    android:background="@drawable/circle3"
    android:visibility="gone"/>

<Button
    android:id="@+id/item3"
    style="@style/MenuItemStyle"
    android:background="@drawable/circle2"
    android:visibility="gone"/>

<Button
    android:id="@+id/item4"
    style="@style/MenuItemStyle"
    android:background="@drawable/circle4"
    android:visibility="gone"/>

<Button
    android:id="@+id/item5"
    style="@style/MenuItemStyle"
    android:background="@drawable/circle1"
    android:visibility="gone"/>

  </FrameLayout>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,033评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,725评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,473评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,846评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,848评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,691评论 1 282
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,053评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,700评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,856评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,676评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,787评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,430评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,034评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,990评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,218评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,174评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,526评论 2 343

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,465评论 25 707
  • 下面的问题经常是关于一般的rocketmq项目要求。 一般 为什么我们创造而不是选择其他产品rocketmq项目吗...
    Kohler阅读 1,159评论 1 0
  • 今天是我和老婆的两周年结婚纪念日,从领证那天开始算, 我们是2015年2月11日下午在连江领的结婚证。 那时候老婆...
    陈力石阅读 512评论 0 0
  • 寂静落在黑夜阳台的时候, 我就会搬一张凳子, 去发呆。 寂静与寂寞不同, 无声让我内心饱满, 白日的空虚在夜晚得到...
    冰源阅读 155评论 0 0