Day6补间动画中两种菜单的实现

1.普通带旋转回弹的菜单

image.png

image.png
1.导入素材
2.activity_main.xml配置
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="MainActivity">

    <ImageButton
        android:id="@+id/b"
        style="@style/MenuBtnStyle"
        android:src="@drawable/b"/>
    <ImageButton
        android:id="@+id/c"
        style="@style/MenuBtnStyle"
        android:src="@drawable/c"/>
    <ImageButton
        android:id="@+id/d"
        style="@style/MenuBtnStyle"
        android:src="@drawable/d"/>
    <ImageButton
        android:id="@+id/e"
        style="@style/MenuBtnStyle"
        android:src="@drawable/e"/>
    <ImageButton
        android:id="@+id/f"
        style="@style/MenuBtnStyle"
        android:src="@drawable/f"/>
    <ImageButton
        android:id="@+id/g"
        style="@style/MenuBtnStyle"
        android:src="@drawable/g"/>
    <ImageButton
        android:id="@+id/h"
        style="@style/MenuBtnStyle"
        android:src="@drawable/h"/>
    <ImageButton
        android:id="@+id/a"
        style="@style/MenuBtnStyle"
        android:src="@drawable/a"/>
</RelativeLayout>
3.btn_style.xml
<resources>
    <style name="MenuBtnStyle">
        <item name="android:layout_width">wrap_content</item>
        <item name="android:layout_height">wrap_content</item>
        <item name="android:background">@null</item>
        <item name="android:layout_alignParentBottom">true</item>
        <item name="android:layout_centerHorizontal">true</item>

    </style>


</resources>
4.MainActivity
public class MainActivity extends AppCompatActivity {

    private int[] resId = {R.id.b, R.id.c, R.id.d, R.id.e};
    private boolean isOpen = false;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        initView();
    }

    private void initView() {
        //给菜单按钮添加点击事件
        ImageButton menu = findViewById(R.id.a);
        menu.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                //遍历数组 取出每一个按钮
                for (int i = 0; i < resId.length; i++) {

                    //判断是打开 还是关闭
                    if (isOpen == true) {
                        //之前是打开 现在需要关闭
                        close(i);
                    } else {
                        //之前是关闭的 现在需要打开
                        open(i);
                    }
                }

                isOpen = !isOpen;
            }
        });
    }

    public void open(int i) {
        animate(i, true);
    }

    public void close(int i) {
        animate(i, false);
    }

    public void animate(int i, boolean state) {
        //计算平分之后的两个之间的角度
        double angle = (Math.PI / (resId.length + 1));

        //获取id对应控件
        ImageButton ib = findViewById(resId[i]);

        //计算当前控件对应的角度
        double mAngle = (i + 1) * angle;

        //计算x距离
        float x = (float) (Math.cos(mAngle) * 400);
        //计算y距离
        float y = (float) (Math.sin(mAngle) * 400);

        float startx;
        float tox;
        float starty;
        float toy;
        Interpolator interpolator;
        if (state == true) {
            startx = 0;
            starty = 0;
            tox = x;
            toy = -y;
            interpolator = new BounceInterpolator();
        } else {
            startx = x;
            starty = -y;
            tox = 0;
            toy = 0;
            interpolator = new AnticipateInterpolator();
        }

        //移动的动画
        TranslateAnimation tAnim = new TranslateAnimation(
                startx, tox, starty, toy);
        tAnim.setDuration(500);
        tAnim.setInterpolator(interpolator);

        //旋转动画
        RotateAnimation rAnim = new RotateAnimation(0, 360 * 3,
                Animation.RELATIVE_TO_SELF, 0.5f,
                Animation.RELATIVE_TO_SELF, 0.5f);
        rAnim.setDuration(500);

        //创建一个AnimationSet集合 包裹多个动画
        AnimationSet set = new AnimationSet(false);
        set.setFillAfter(true);
        set.addAnimation(rAnim);
        set.addAnimation(tAnim);

        //开始动画
        ib.startAnimation(set);
    }
}

2.有层级的菜单

image.png

image.png

image.png
1.导入素材
2.activity_main.xml配置
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">
<RelativeLayout
    android:layout_width="100dp"
    android:layout_height="50dp"
    android:background="@drawable/level1"
    android:layout_centerHorizontal="true"
    android:layout_alignParentBottom="true"
    >
<ImageButton
    android:id="@+id/ib_home"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/icon_home"
    android:background="@null"
    android:layout_centerInParent="true"
    />

</RelativeLayout>
<RelativeLayout
    android:id="@+id/rl_level2"
    android:layout_width="200dp"
    android:layout_height="100dp"
    android:background="@drawable/level2"
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="true"
    >

    <ImageButton
        android:id="@+id/ib_menu"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/icon_menu"
        android:background="@null"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="5dp"
        />

    <ImageButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/icon_search"
        android:background="@null"
        android:layout_alignParentLeft="true"
        android:layout_alignParentBottom="true"
        android:layout_marginLeft="5dp"/>

    <ImageButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/icon_myyouku"
        android:background="@null"
        android:layout_alignParentRight="true"
        android:layout_alignParentBottom="true"
        android:layout_marginRight="5dp"/>
</RelativeLayout>
    <RelativeLayout
        android:id="@+id/rl_level3"
        android:layout_width="300dp"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:layout_height="150dp"
        android:background="@drawable/level3"
        >
        <ImageButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/channel1"
            android:background="@null"
            android:layout_alignParentLeft="true"
            android:layout_alignParentBottom="true"
            android:layout_marginLeft="5dp"/>

        <ImageButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/channel7"
            android:background="@null"
            android:layout_alignParentRight="true"
            android:layout_alignParentBottom="true"
            android:layout_marginRight="5dp"/>

        <ImageButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/channel2"
            android:background="@null"
            android:layout_marginLeft="25dp"
            android:layout_marginTop="60dp"/>

        <ImageButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/channel6"
            android:background="@null"
            android:layout_alignParentRight="true"
            android:layout_marginRight="25dp"
            android:layout_marginTop="60dp"/>

        <ImageButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/channel3"
            android:background="@null"
            android:layout_marginLeft="60dp"
            android:layout_marginTop="20dp"/>

        <ImageButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/channel5"
            android:background="@null"
            android:layout_alignParentRight="true"
            android:layout_marginRight="60dp"
            android:layout_marginTop="20dp"/>

        <ImageButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/channel4"
            android:background="@null"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="2dp"/>


    </RelativeLayout>

</RelativeLayout>
3.管理旋转的xml文件

rotate_in_anim.xml

<set xmlns:android="http://schemas.android.com/apk/res/android"
    android:fillAfter="true"
    android:duration="700">
    <rotate android:fromDegrees="180"
        android:toDegrees="0"
        android:pivotX="50%"
        android:pivotY="100%"
    />

</set>

rotate_out_anim.xml

<set xmlns:android="http://schemas.android.com/apk/res/android"
    android:fillAfter="true"
    android:duration="700">
<rotate android:fromDegrees="0"
    android:toDegrees="-180"
  android:pivotX="50%"
    android:pivotY="100%"
    />

</set>
4.MainActivity
public class MainActivity extends AppCompatActivity implements View.OnClickListener {
    //记录第三层菜单的状态
    private boolean islevel3Open = true;
    private boolean islevel2Open=true;
    private RelativeLayout level3;
    private RelativeLayout level2;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        //加载容器
        level3 = findViewById(R.id.rl_level3);
        level2=findViewById(R.id.rl_level2);
        //menu按钮
        ImageButton menu = findViewById(R.id.ib_menu);
        ImageButton home=findViewById(R.id.ib_home);
        //添加点击事件
        menu.setOnClickListener(this);
        home.setOnClickListener(this);
    }

    @Override
    public void onClick(View view) {
        switch (view.getId()) {
            case R.id.ib_menu:
                if (islevel3Open) {
                    //关闭
                    close(level3,0);
                } else {
                    open(level3);
                }
                islevel3Open = !islevel3Open;
                break;
            case R.id.ib_home:
                if(islevel3Open){
                    //关闭第三层菜单
                    close(level3,0);
                    islevel3Open=false;
                }if(islevel2Open){
                    close(level2,100);
            }else{
                    open(level2);
            }
                islevel2Open=!islevel2Open;


                break;
            default:
                break;
        }
    }

    public void open(RelativeLayout rl) {

        Animation in = AnimationUtils.loadAnimation(this, R.anim.rotate_in_anim);
rl.startAnimation(in);
//子控件可点击
        changeState(rl,true);
    }

    public void close(RelativeLayout rl,long delay ) {
 Animation out=AnimationUtils.loadAnimation(this,R.anim.rotate_out_anim);
 out.setStartOffset(delay);
 rl.startAnimation(out);
 //子控件不可点击
        changeState(rl,false);
    }
public  void changeState(RelativeLayout rl,boolean enable){

    //1.获取容器子控件的个数
    int childCount=rl.getChildCount();
    //2.遍历容器的子控件
    for (int i = 0; i <childCount ; i++) {
   //取出对应的子控件
        View v=rl.getChildAt(i);
        //设置子控件的状态
        v.setEnabled(enable);
    }
}
}

心得

更加熟悉了补间动画,对控件相关属性的控制也变得更加了解

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

推荐阅读更多精彩内容