Android彩虹菜單

核心代碼:
MainActivity.java

package com.huatec.myapplication;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.ImageButton;
import android.widget.RelativeLayout;

public class MainActivity extends AppCompatActivity {

    private ImageButton imageButton_a1, imageButton_b2;//觸發(fā)菜單的按鈕
    private RelativeLayout l2, l3;//二級與三級菜單布局
    private boolean isl2Show = true;//判斷二級菜單是否顯示
    private boolean isl3Show = true; //盤算三級菜單是否顯示

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

        //獲取觸發(fā)菜單的按鈕
        imageButton_a1 = findViewById(R.id.a_1);
        imageButton_b2 = findViewById(R.id.b_2);

        //獲取二級菜單與三級菜單布局
        l2 = findViewById(R.id.level_2);
        l3 = findViewById(R.id.level_3);

        //單擊按鈕:顯示或隱藏三級菜單
        imageButton_b2.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {

                if (isl3Show) {
                    //隱藏3級導航菜單
                    MyAnimation.animationOUT(l3, 500, 0);
                } else {
                    //顯示3級導航菜單
                    MyAnimation.animationIN(l3, 500);

                }
                //根據(jù)當前的顯示狀態(tài)設置為相反的狀態(tài)砸脊,如3級菜單已經關閉。這里將設置狀態(tài)為false
                isl3Show = !isl3Show;

            }
        });

        //單擊按鈕:顯示二級菜單或隱藏二級三級菜單
        imageButton_a1.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {

                if (!isl2Show) {
                    //顯示2級導航菜單
                    MyAnimation.animationIN(l2, 500);
                } else {
                    if (isl3Show) {
                        //隱藏3級導航菜單
                        MyAnimation.animationOUT(l3, 500, 0);
                        //隱藏2級導航菜單
                        MyAnimation.animationOUT(l2, 500, 500);
                        isl3Show = !isl3Show;
                    } else {
                        //隱藏2級導航菜單
                        MyAnimation.animationOUT(l2, 500, 0);
                    }
                }
                isl2Show = !isl2Show;

            }
        });
    }
}

MyAnimation.java

package com.huatec.myapplication;

import android.view.View;
import android.view.ViewGroup;
import android.view.animation.Animation;
import android.view.animation.RotateAnimation;

public class MyAnimation {

    /**
     * 菜單進入動畫
     *
     * @param viewGroup 菜單布局,對該布局進行旋轉
     * @param duration  動畫時間
     */
    public static void animationIN(ViewGroup viewGroup, int duration) {

        //便利布局中按鈕控件
        for (int i = 0; i < viewGroup.getChildCount(); i++) {
            viewGroup.getChildAt(i).setVisibility(View.VISIBLE);    //設置顯示
            viewGroup.getChildAt(i).setFocusable(true);             //獲得焦點
            viewGroup.getChildAt(i).setClickable(true);             //可以點擊
        }

        /**
         * 旋轉動畫
         * RotateAnimation(fromDegrees, toDegrees, pivotXType, pivotXValue, pivotYType, pivotYValue)
         * fromDegrees 開始旋轉角度
         * toDegrees 旋轉到的角度
         * pivotXType X軸 參照物
         * pivotXValue x軸 旋轉的參考點
         * pivotYType Y軸 參照物
         * pivotYValue Y軸 旋轉的參考點
         */
        Animation animation = new RotateAnimation(-180, 0,
                Animation.RELATIVE_TO_SELF, 0.5f,
                Animation.RELATIVE_TO_SELF, 1.0f);        //創(chuàng)建旋轉動畫
        animation.setFillAfter(true);                            //停留在動畫結束位置
        animation.setDuration(duration);                         //動畫過程的時間
        viewGroup.startAnimation(animation);                     //啟動動畫

    }

    /**
     * 菜單退出動畫
     *
     * @param viewGroup
     * @param duration
     * @param startOffSet
     */
    public static void animationOUT(final ViewGroup viewGroup, int duration, int startOffSet) {

        //創(chuàng)建旋轉動畫
        Animation animation = new RotateAnimation(0, -180,
                Animation.RELATIVE_TO_SELF, 0.5f,
                Animation.RELATIVE_TO_SELF, 1.0f);
        animation.setFillAfter(true);//停留在動畫結束位置
        animation.setDuration(duration);//動畫過程的時間
        animation.setStartOffset(startOffSet);//設置動畫多久后執(zhí)行
        //設置動畫監(jiān)聽事件
        animation.setAnimationListener(new Animation.AnimationListener() {

            @Override
            public void onAnimationStart(Animation animation) {

            }

            @Override
            public void onAnimationRepeat(Animation animation) {

            }

            /**
             * 動畫結束后的事件處理
             */
            @Override
            public void onAnimationEnd(Animation animation) {
                for (int i = 0; i < viewGroup.getChildCount(); i++) {
                    viewGroup.getChildAt(i).setVisibility(View.GONE);       //設置隱藏菜單中按鈕
                    viewGroup.getChildAt(i).setFocusable(false);            //失去焦點
                    viewGroup.getChildAt(i).setClickable(false);            //不可單擊
                }

            }
        });

        viewGroup.startAnimation(animation);//啟動退出動畫
    }
}

activity_main布局文件:

<?xml version="1.0" encoding="utf-8"?>
<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"
    android:background="@drawable/bg"
    tools:context=".MainActivity">

    <!--創(chuàng)建一級菜單按鈕-->
    <RelativeLayout
        android:id="@+id/level_1"
        android:layout_width="100dp"
        android:layout_height="50dp"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:background="@drawable/level1_bg">

        <ImageButton
            android:id="@+id/a_1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:background="@drawable/a1_icon"/>

    </RelativeLayout>

    <!--顯示二級菜單按鈕-->
    <RelativeLayout
        android:id="@+id/level_2"
        android:layout_width="180dp"
        android:layout_height="90dp"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:background="@drawable/level2_bg">

        <ImageButton
            android:id="@+id/b_1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_margin="10dp"
            android:background="@drawable/b1_icon"/>

        <ImageButton
            android:id="@+id/b_2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_margin="6dp"
            android:background="@drawable/b2_icon"/>

        <ImageButton
            android:id="@+id/b_3"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_alignParentRight="true"
            android:layout_margin="10dp"
            android:background="@drawable/b3_icon"/>

    </RelativeLayout>

    <!--顯示三級菜單按鈕-->
    <RelativeLayout
        android:id="@+id/level_3"
        android:layout_width="280dp"
        android:layout_height="140dp"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:background="@drawable/level3_bg">

        <ImageButton
            android:id="@+id/c1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_marginBottom="6dp"
            android:layout_marginLeft="12dp"
            android:background="@drawable/c1_icon"/>

        <ImageButton
            android:id="@+id/c2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_above="@id/c1"
            android:layout_marginBottom="12dp"
            android:layout_marginLeft="28dp"
            android:background="@drawable/c2_icon"/>

        <ImageButton
            android:id="@+id/c3"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_above="@id/c2"
            android:layout_marginBottom="6dp"
            android:layout_marginLeft="8dp"
            android:layout_toRightOf="@id/c2"
            android:background="@drawable/c3_icon"/>

        <ImageButton
            android:id="@+id/c4"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_margin="6dp"
            android:background="@drawable/c4_icon"/>


        <ImageButton
            android:id="@+id/c7"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_alignParentRight="true"
            android:layout_marginBottom="6dp"
            android:layout_marginRight="12dp"
            android:background="@drawable/c7_icon"/>


        <ImageButton
            android:id="@+id/c6"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_above="@+id/c7"
            android:layout_alignParentRight="true"
            android:layout_centerHorizontal="true"
            android:layout_marginBottom="12dp"
            android:layout_marginRight="28dp"
            android:background="@drawable/c6_icon"/>


        <ImageButton
            android:id="@+id/c5"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_above="@+id/c6"
            android:layout_centerHorizontal="true"
            android:layout_marginBottom="6dp"
            android:layout_marginRight="8dp"
            android:layout_toLeftOf="@+id/c6"
            android:background="@drawable/c5_icon"/>

    </RelativeLayout>

</RelativeLayout>

效果圖:


2018-05-18 22_41_31.gif

源碼地址:https://github.com/280357392/RainbowMenu

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末光戈,一起剝皮案震驚了整個濱河市供屉,隨后出現(xiàn)的幾起案子怯晕,更是在濱河造成了極大的恐慌奄薇,老刑警劉巖碟联,帶你破解...
    沈念sama閱讀 206,602評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件租副,死亡現(xiàn)場離奇詭異坐慰,居然都是意外死亡,警方通過查閱死者的電腦和手機用僧,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,442評論 2 382
  • 文/潘曉璐 我一進店門结胀,熙熙樓的掌柜王于貴愁眉苦臉地迎上來赞咙,“玉大人,你說我怎么就攤上這事糟港∨什伲” “怎么了?”我有些...
    開封第一講書人閱讀 152,878評論 0 344
  • 文/不壞的土叔 我叫張陵秸抚,是天一觀的道長速和。 經常有香客問我,道長剥汤,這世上最難降的妖魔是什么颠放? 我笑而不...
    開封第一講書人閱讀 55,306評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮吭敢,結果婚禮上碰凶,老公的妹妹穿的比我還像新娘。我一直安慰自己鹿驼,他們只是感情好痒留,可當我...
    茶點故事閱讀 64,330評論 5 373
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著蠢沿,像睡著了一般伸头。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上舷蟀,一...
    開封第一講書人閱讀 49,071評論 1 285
  • 那天恤磷,我揣著相機與錄音,去河邊找鬼野宜。 笑死扫步,一個胖子當著我的面吹牛,可吹牛的內容都是我干的匈子。 我是一名探鬼主播河胎,決...
    沈念sama閱讀 38,382評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼虎敦!你這毒婦竟也來了游岳?” 一聲冷哼從身側響起,我...
    開封第一講書人閱讀 37,006評論 0 259
  • 序言:老撾萬榮一對情侶失蹤其徙,失蹤者是張志新(化名)和其女友劉穎胚迫,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體唾那,經...
    沈念sama閱讀 43,512評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡访锻,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 35,965評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片期犬。...
    茶點故事閱讀 38,094評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡河哑,死狀恐怖,靈堂內的尸體忽然破棺而出龟虎,到底是詐尸還是另有隱情璃谨,我是刑警寧澤,帶...
    沈念sama閱讀 33,732評論 4 323
  • 正文 年R本政府宣布遣总,位于F島的核電站睬罗,受9級特大地震影響,放射性物質發(fā)生泄漏旭斥。R本人自食惡果不足惜容达,卻給世界環(huán)境...
    茶點故事閱讀 39,283評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望垂券。 院中可真熱鬧花盐,春花似錦、人聲如沸菇爪。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,286評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽凳宙。三九已至熙揍,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間氏涩,已是汗流浹背届囚。 一陣腳步聲響...
    開封第一講書人閱讀 31,512評論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留是尖,地道東北人意系。 一個月前我還...
    沈念sama閱讀 45,536評論 2 354
  • 正文 我出身青樓,卻偏偏與公主長得像饺汹,于是被迫代替她去往敵國和親蛔添。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 42,828評論 2 345

推薦閱讀更多精彩內容

  • Android 自定義View的各種姿勢1 Activity的顯示之ViewRootImpl詳解 Activity...
    passiontim閱讀 171,510評論 25 707
  • 微熱空中飄兜辞,海中浪花揚迎瞧。 草坪靜臥躺,無人知故鄉(xiāng)弦疮。 黎明朝陽起夹攒,太陽當頭照。 夕陽無限好胁塞,只是映孤身。 斜雨風中飄...
    世界中心的存在閱讀 221評論 0 0
  • 身邊隨處是美景,晚飯后去婆婆那坐了一會啸罢,婆婆庭院里花兒開的艷麗: 走在路邊,鄰家庭院外: ...
    徐之楓林葉閱讀 350評論 0 3
  • ①學習的幾種途徑 書中生百,學習作者對生活的感悟和對不同事件的觀點。生活市俊,觀察別人對不同事的處理方法摆昧,思考并為己所用绅你。...
    L雁小七閱讀 253評論 1 2
  • 本來只是抱著讀原版英文書來提高自己英語水平的想法去看flipped 的窍仰,沒想到讀完之后又忍不住找資源重溫了一遍電影...
    大哥要加油閱讀 346評論 0 0