彈出菜單和多級(jí)菜單制作

一莽鸿、彈出菜單

制作一個(gè)可以彈出的菜單,具體直接看效果吧~

效果展示

具體實(shí)現(xiàn):
1拜轨,在XML文件里面添加圖片按鈕

<?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"
tools:context=".MainActivity">
<ImageButton
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/id_d"
    style="@style/ManuBtnStyle"
    android:src="@drawable/d"/>
<ImageButton
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/id_c"
    style="@style/ManuBtnStyle"
    android:src="@drawable/c"/>
<ImageButton
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/id_b"
    style="@style/ManuBtnStyle"
    android:src="@drawable/b"
    />
<ImageButton
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/id_a"
    android:background="@null"
    style="@style/ManuBtnStyle"
    android:src="@drawable/a"/>
</RelativeLayout>

2抽减,為按鈕設(shè)置樣式,在values文件中

<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="ManuBtnStyle">
    <item name="android:background">@null</item>
    <item name="android:layout_alignParentBottom">true</item>
    <item name="android:layout_centerHorizontal">true</item>
</style>
</resources>

3橄碾,添加動(dòng)畫
(1)卵沉,定義數(shù)組保存所有的動(dòng)畫按鈕的資源ID

  private int[] resld = {R.id.id_b,R.id.id_c,R.id.id_d};

(2),獲取菜單按鈕的狀態(tài)法牲,并為菜單按鈕添加點(diǎn)擊事件史汗,isOpen記錄按鈕菜單的是否是打開狀態(tài)

   private void initView(){
    //給菜單添加點(diǎn)擊事件
    ImageButton menu = findViewById(R.id.id_a);
    menu.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            //遍歷數(shù)組,取出每一個(gè)按鈕
            for(int i = 0;i < resld.length;i++){
                //判斷是打開 還是關(guān)閉
                if(isOpen == true){
                    //之前是打開 拒垃,現(xiàn)在需要關(guān)閉
                    close(i);
                }else{
                    //之間是關(guān)閉停撞,現(xiàn)在需要打開
                    open(i);
                }
            }
            isOpen = !isOpen;
        }
    });
}

(3),定義方法封裝菜單的open和close動(dòng)畫

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

(4)悼瓮,實(shí)現(xiàn)動(dòng)畫戈毒,使用AnimationSet管理多個(gè)動(dòng)畫

   public void animate(int i,boolean state){
    //計(jì)算菜單平分之后的夾角
    double angle = (Math.PI/(resld.length+1));
    //獲取id對(duì)應(yīng)的控件
    ImageButton imageButton = findViewById(resld[i]);
    //計(jì)算當(dāng)前控制對(duì)應(yīng)控件的角度
    double mAngle = (i+1) * angle;
    //計(jì)算x距離
    float x = (float)(Math.cos(mAngle) * 400);
    //計(jì)算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();
    }
    //移動(dòng)的動(dòng)畫
    TranslateAnimation translateAnimation = new TranslateAnimation(startx,tox,starty,toy);
    translateAnimation.setDuration(500);
    translateAnimation.setInterpolator(interpolator);
    //旋轉(zhuǎn)的動(dòng)畫
    RotateAnimation rotateAnimation = new RotateAnimation(0,360*3, Animation.RELATIVE_TO_SELF,
            0.5f,Animation.RELATIVE_TO_SELF,0.5f);
    rotateAnimation.setDuration(500);
    //創(chuàng)建一個(gè)Animation集合 包裹多個(gè)動(dòng)畫
    AnimationSet set = new AnimationSet(false);
    set.setFillAfter(true); //保持狀態(tài)
    set.addAnimation(rotateAnimation);
    set.addAnimation(translateAnimation);
    //開始動(dòng)畫
    imageButton.startAnimation(set);
}

二、多級(jí)菜單

先展示效果:

效果展示

具體實(shí)現(xiàn):
1横堡,在XML文件里面添加每層菜單的布局

<?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"
tools:context=".MainActivity">
<ImageView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/colorPrimary"/>

<!--    一級(jí)菜單-->
<RelativeLayout
    android:layout_width="100dp"
    android:layout_height="50dp"
    android:background="@drawable/level1"
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="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>
  <!--    二級(jí)菜單-->
  <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_alignParentBottom="true"
        android:layout_marginLeft="150dp"/>
    <ImageButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/icon_myyouku"
        android:background="@null"
        android:layout_alignParentBottom="true"
        android:layout_marginRight="5dp"
        />
</RelativeLayout>
<!--    三級(jí)菜單-->
<RelativeLayout
    android:id="@+id/rl_level3"
    android:layout_width="300dp"
    android:layout_height="150dp"
    android:background="@drawable/level3"
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="true"
    >
    <ImageButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/channel1"
        android:background="@null"
        android:layout_marginLeft="5dp"
        android:layout_alignParentBottom="true"/>
    <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>

效果圖:


效果展示

2埋市,讀取XML文件里面的控件,并為菜單添加點(diǎn)擊事件

private boolean isOpen3 = true; //記錄三級(jí)菜單是否打開
private boolean isOpen2 = true; //記錄二級(jí)菜單是否打開

private RelativeLayout level3;
private RelativeLayout level2;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    //加載容器布局
    level2 = findViewById(R.id.rl_level2);
    level3 = findViewById(R.id.rl_level3);

    ImageButton menu = findViewById(R.id.ib_menu);
    ImageButton home = findViewById(R.id.ib_home);
    //添加點(diǎn)擊事件
    menu.setOnClickListener(this);
    home.setOnClickListener(this);

3命贴,點(diǎn)擊二級(jí)菜單的菜單按鈕道宅,隱藏或顯示三級(jí)菜單

 @Override
public void onClick(View v) {
    //判斷哪一個(gè)菜單被點(diǎn)擊了
    switch (v.getId()){
        case R.id.ib_menu:
            if(isOpen3){
                //應(yīng)該關(guān)閉菜單
                close(level3,200);
            }else{
                //應(yīng)該打開菜單
                open(level3);
            }
            isOpen3 = !isOpen3;
            break;
        case R.id.ib_home:
            if(isOpen3){
                //如果顯示三級(jí)菜單,就關(guān)閉三級(jí)菜單
                close(level3,0);
                isOpen3 = false;
            }
            if(isOpen2){
                //關(guān)閉二級(jí)菜單
                close(level2,200);
            }else{
                //打開二級(jí)菜單
                open(level2);
            }
            isOpen2 = !isOpen2;
            break;
            default:
                break;
    }
}

4套么,創(chuàng)建anim文件培己,然后添加動(dòng)畫
創(chuàng)建步驟:


image.png
image.png

創(chuàng)建完成后再回到Android項(xiàng)目,在src文件夾下就會(huì)出現(xiàn)anim動(dòng)畫文件胚泌,然后再在anim文件加下配置動(dòng)畫的XML文件


image.png

image.png

5,封裝旋轉(zhuǎn)動(dòng)畫

 public void open(RelativeLayout relativeLayout){
    //打開三級(jí)菜單
    Animation in = AnimationUtils.loadAnimation(this,R.anim.rotate_in_anim);
    relativeLayout.startAnimation(in);
    //子控件可點(diǎn)擊
    changeState(relativeLayout,true);
    
}
public void close(RelativeLayout relativeLayout,long dalay){
    //關(guān)閉三級(jí)菜單
    Animation out = AnimationUtils.loadAnimation(this,R.anim.rotate_out_anim);
    out.setStartOffset(dalay); //添加延遲效果
    relativeLayout.startAnimation(out);
    //子控件不可點(diǎn)擊
    changeState(relativeLayout,false);
}

其中解決了補(bǔ)間動(dòng)畫的弊端:視覺效果上翻轉(zhuǎn)上去了肃弟,點(diǎn)擊原來的位置玷室,按鈕還可以響應(yīng)事件。轉(zhuǎn)出去就設(shè)置這個(gè)容器的所有空間都可點(diǎn)擊笤受;轉(zhuǎn)回來的容器的所有子控件都可以點(diǎn)擊穷缤。

 public void changeState(RelativeLayout relativeLayout,boolean enable){
    //獲取容器子控件的個(gè)數(shù)
    int childCount = relativeLayout.getChildCount();
    //遍歷容器的子控件
    for(int i =0;i < childCount;i++){
        //取出對(duì)應(yīng)的子控件
        View view = relativeLayout.getChildAt(i);
        //設(shè)置子控件的狀態(tài)
        view.setEnabled(enable);
    }
}

MainActivity完整代碼:

import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.view.animation.Animation;
import android.view.animation.AnimationUtils;
import android.widget.ImageButton;
import android.widget.RelativeLayout;

public class MainActivity extends AppCompatActivity implements View.OnClickListener {

private boolean isOpen3 = true; //記錄三級(jí)菜單是否打開
private boolean isOpen2 = true; //記錄二級(jí)菜單是否打開

private RelativeLayout level3;
private RelativeLayout level2;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    //加載容器布局
    level2 = findViewById(R.id.rl_level2);
    level3 = findViewById(R.id.rl_level3);

    ImageButton menu = findViewById(R.id.ib_menu);
    ImageButton home = findViewById(R.id.ib_home);
    //添加點(diǎn)擊事件
    menu.setOnClickListener(this);
    home.setOnClickListener(this);
}

@Override
public void onClick(View v) {
    //判斷哪一個(gè)菜單被點(diǎn)擊了
    switch (v.getId()){
        case R.id.ib_menu:
            if(isOpen3){
                //應(yīng)該關(guān)閉菜單
                close(level3,200);
            }else{
                //應(yīng)該打開菜單
                open(level3);
            }
            isOpen3 = !isOpen3;
            break;
        case R.id.ib_home:
            if(isOpen3){
                //如果顯示三級(jí)菜單,就關(guān)閉三級(jí)菜單
                close(level3,0);
                isOpen3 = false;
            }
            if(isOpen2){
                //關(guān)閉二級(jí)菜單
                close(level2,200);
            }else{
                //打開二級(jí)菜單
                open(level2);
            }
            isOpen2 = !isOpen2;
            break;
            default:
                break;
    }

}

public void open(RelativeLayout relativeLayout){
    //打開三級(jí)菜單
    Animation in = AnimationUtils.loadAnimation(this,R.anim.rotate_in_anim);
    relativeLayout.startAnimation(in);
    //子控件可點(diǎn)擊
    changeState(relativeLayout,true);

}
public void close(RelativeLayout relativeLayout,long dalay){
    //關(guān)閉三級(jí)菜單
    Animation out = AnimationUtils.loadAnimation(this,R.anim.rotate_out_anim);
    out.setStartOffset(dalay);
    relativeLayout.startAnimation(out);
    //子控件不可點(diǎn)擊
    changeState(relativeLayout,false);


}
public void changeState(RelativeLayout relativeLayout,boolean enable){
    //獲取容器子控件的個(gè)數(shù)
    int childCount = relativeLayout.getChildCount();
    //遍歷容器的子控件
    for(int i =0;i < childCount;i++){
        //取出對(duì)應(yīng)的子控件
        View view = relativeLayout.getChildAt(i);
        //設(shè)置子控件的狀態(tài)
        view.setEnabled(enable);

      }
  }
}

三箩兽、感悟

這個(gè)Demo雖然很簡單但寫起來的時(shí)候還是會(huì)出各種各樣的麻煩津肛,最難得地方就是動(dòng)畫旋轉(zhuǎn)角度,思維不縝密汗贫,還有待加強(qiáng)身坐。多多練習(xí)秸脱,熟能生巧!

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末部蛇,一起剝皮案震驚了整個(gè)濱河市摊唇,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌涯鲁,老刑警劉巖巷查,帶你破解...
    沈念sama閱讀 206,839評(píng)論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異抹腿,居然都是意外死亡岛请,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,543評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門警绩,熙熙樓的掌柜王于貴愁眉苦臉地迎上來髓需,“玉大人,你說我怎么就攤上這事房蝉×糯遥” “怎么了?”我有些...
    開封第一講書人閱讀 153,116評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵搭幻,是天一觀的道長咧擂。 經(jīng)常有香客問我,道長檀蹋,這世上最難降的妖魔是什么松申? 我笑而不...
    開封第一講書人閱讀 55,371評(píng)論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮俯逾,結(jié)果婚禮上贸桶,老公的妹妹穿的比我還像新娘。我一直安慰自己桌肴,他們只是感情好皇筛,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,384評(píng)論 5 374
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著坠七,像睡著了一般水醋。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上彪置,一...
    開封第一講書人閱讀 49,111評(píng)論 1 285
  • 那天拄踪,我揣著相機(jī)與錄音,去河邊找鬼拳魁。 笑死惶桐,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播姚糊,決...
    沈念sama閱讀 38,416評(píng)論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼贿衍,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了叛拷?” 一聲冷哼從身側(cè)響起舌厨,我...
    開封第一講書人閱讀 37,053評(píng)論 0 259
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎忿薇,沒想到半個(gè)月后裙椭,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,558評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡署浩,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,007評(píng)論 2 325
  • 正文 我和宋清朗相戀三年揉燃,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片筋栋。...
    茶點(diǎn)故事閱讀 38,117評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡炊汤,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出弊攘,到底是詐尸還是另有隱情抢腐,我是刑警寧澤,帶...
    沈念sama閱讀 33,756評(píng)論 4 324
  • 正文 年R本政府宣布襟交,位于F島的核電站迈倍,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏捣域。R本人自食惡果不足惜啼染,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,324評(píng)論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望焕梅。 院中可真熱鬧迹鹅,春花似錦、人聲如沸贞言。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,315評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽蜗字。三九已至打肝,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間挪捕,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,539評(píng)論 1 262
  • 我被黑心中介騙來泰國打工争便, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留级零,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,578評(píng)論 2 355
  • 正文 我出身青樓,卻偏偏與公主長得像奏纪,于是被迫代替她去往敵國和親鉴嗤。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,877評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容

  • ¥開啟¥ 【iAPP實(shí)現(xiàn)進(jìn)入界面執(zhí)行逐一顯】 〖2017-08-25 15:22:14〗 《//首先開一個(gè)線程序调,因...
    小菜c閱讀 6,358評(píng)論 0 17
  • 【Android 動(dòng)畫】 動(dòng)畫分類補(bǔ)間動(dòng)畫(Tween動(dòng)畫)幀動(dòng)畫(Frame 動(dòng)畫)屬性動(dòng)畫(Property ...
    Rtia閱讀 6,106評(píng)論 1 38
  • 第一天:自我形象冥想 自信醉锅、有影響力 場景、著裝发绢、感受(看到聽到) 一小步:拉丁舞練習(xí) 20180814教練訓(xùn)練營...
    寶蘭兒閱讀 735評(píng)論 0 0
  • 最近需要升級(jí)ionic App ios版本硬耍,遇到了好多問題,在這里記錄一下: 1.appId雙重認(rèn)證忘掉安全提示問...
    96ebc997d5c4閱讀 688評(píng)論 0 0
  • 深夜看完一篇關(guān)于朱丹和周一圍婚姻關(guān)系的文章边酒,心情久久不能平復(fù)经柴,突然覺得他們的婚姻狀況怎么和我的那么像呢! 雖然我和...
    小小草早閱讀 357評(píng)論 0 1