中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

自定義菜單,仿優酷菜單

發布時間:2020-06-19 09:05:33 來源:網絡 閱讀:5156 作者:老婆的寶寶 欄目:移動開發

效果圖如下:點擊主頁后,上面2個圓環旋轉消失與出現,點擊中間圓環的中間那個菜單按鈕,最外圍的圓環旋轉消失于出現

自定義菜單,仿優酷菜單


利用了自定義控件技術,以及圖片的旋轉和布局時各個控件的相對關系。


1、acitivity_main.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="com.yuanlp.youkudemo.MainActivity">


    <RelativeLayout
        android:id="@+id/level3"
        android:layout_width="280dp"
        android:layout_height="140dp"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:background="@drawable/level3">


        <ImageView
            android:id="@+id/channel1"
            android:layout_marginLeft="8dp"
            android:layout_marginBottom="8dp"
            android:layout_alignParentBottom="true"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"

            android:src="@drawable/channel1"/>

        <ImageView
            android:id="@+id/channel2"
            android:layout_above="@+id/channel1"
            android:layout_marginLeft="34dp"
            android:layout_marginBottom="8dp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"

            android:src="@drawable/channel2"/>


        <ImageView
            android:id="@+id/channel3"
            android:layout_above="@+id/channel2"
            android:layout_marginLeft="66dp"
            android:layout_marginBottom="8dp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/channel3"/>

        <ImageView
            android:id="@+id/channel4"
            android:layout_marginTop="8dp"
            android:layout_centerHorizontal="true"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"

            android:src="@drawable/channel4"/>

        <ImageView
            android:id="@+id/channel5"
            android:layout_above="@+id/channel6"
            android:layout_marginRight="67dp"
            android:layout_marginBottom="8dp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:src="@drawable/channel5"/>

        <ImageView
            android:id="@+id/channel6"
            android:layout_above="@+id/channel7"
            android:layout_marginRight="27dp"
            android:layout_marginBottom="8dp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:src="@drawable/channel6"/>

        <ImageView
            android:id="@+id/channel7"
            android:layout_marginRight="9dp"
            android:layout_marginBottom="8dp"
            android:layout_alignParentBottom="true"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:src="@drawable/channel7"/>

    </RelativeLayout>


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

        <ImageView
            android:layout_marginLeft="8dp"
            android:layout_marginBottom="8dp"
           android:layout_alignParentBottom="true"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"

            android:src="@drawable/icon_search"/>

        <ImageView
            android:id="@+id/icon_menu"
            android:layout_centerHorizontal="true"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="8dp"
            android:src="@drawable/icon_menu"/>

        <ImageView
            android:layout_marginLeft="8dp"
            android:layout_marginBottom="8dp"
            android:layout_alignParentBottom="true"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:src="@drawable/icon_myyouku"/>
    </RelativeLayout>


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

        <ImageView
            android:id="@+id/icon_home"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:src="@drawable/icon_home"/>
    </RelativeLayout>


</RelativeLayout>

2、Tools.java 工具類,具體實現了消失與出現的方法,利用了圖片的旋轉消失

package com.yuanlp.youkudemo;

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

/**
 * Created by 原立鵬 on 2017/7/3.
 * 控制level的指定的看控件
 */

class Tools {
    public static void hideView(View view){
        //參數解釋:第一個蠶食是從多少開始,第二個是旋轉多少度,第三個以及第四個是相對于控件來說,旋轉中心的位置,即控件寬度的一半以及高度
        RotateAnimation ra=new RotateAnimation(0,180,view.getWidth()/2,view.getHeight());
        ra.setDuration(500);  //設置動畫的時間,不然的話直接就沒了,沒有視覺效果
        ra.setFillAfter(true);  //動畫停留在完成的狀態

        view.startAnimation(ra);  //啟動動畫

    }

    public static void showView(View view) {

        //參數解釋:第一個蠶食是從多少開始,第二個是旋轉多少度,第三個以及第四個是相對于控件來說,旋轉中心的位置,即控件寬度的一半以及高度
        RotateAnimation ra=new RotateAnimation(180,360,view.getWidth()/2,view.getHeight());
        ra.setDuration(500);  //設置動畫的時間,不然的話直接就沒了,沒有視覺效果
        ra.setFillAfter(true);  //動畫停留在完成的狀態

        view.startAnimation(ra);  //啟動動畫

    }
}

3、MainActivity.java

package com.yuanlp.youkudemo;

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

public class MainActivity extends AppCompatActivity {

    private ImageView icon_home;
    private ImageView icon_menu;
    private RelativeLayout level1;
    private RelativeLayout level2;
    private RelativeLayout level3;

    //定義一個狀態,來控制level3是否顯示
    private boolean isShowLevel3=true;

    //定義一個狀態,來控制level2是否顯示
    private boolean isShowLevel2=true;

    //定義一個狀態,來控制level1是否顯示
    private boolean isShowLevel1=true;


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

        level1= (RelativeLayout) findViewById(R.id.level1);
        level2= (RelativeLayout) findViewById(R.id.level2);
        level3= (RelativeLayout) findViewById(R.id.level3);

        icon_home= (ImageView) findViewById(R.id.icon_home);
        icon_menu= (ImageView) findViewById(R.id.icon_menu);

        MyOnClickListener myOnClickListener=new MyOnClickListener();

        icon_home.setOnClickListener(myOnClickListener);
        icon_menu.setOnClickListener(myOnClickListener);
    }

    class MyOnClickListener implements View.OnClickListener {

        @Override
        public void onClick(View v) {
            switch (v.getId()){
                case R.id.icon_home:
                    //如果三級菜單和二級菜單都是現實的,那么把2個都設置隱藏
                    if (isShowLevel2){
                        isShowLevel2=false;
                        Tools.hideView(level2);
                        if (isShowLevel3){
                            isShowLevel3=false;
                            Tools.hideView(level3);
                        }
                    }else{
                        isShowLevel2=true;
                        Tools.showView(level2);

                    }

                    //如果三級菜單和二級菜單都是隱藏的,就顯示二級菜單

                    break;
                case R.id.icon_menu:
                    if (isShowLevel3){
                        //隱藏
                        isShowLevel3=false;
                        Tools.hideView(level3);
                    }else{
                        isShowLevel3=true;
                        Tools.showView(level3);
                    }

                    break;
            }
        }
    }
}


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

小金县| 淮阳县| 枝江市| 阳谷县| 蓬溪县| 荃湾区| 自贡市| 阳信县| 宝清县| 读书| 古蔺县| 万载县| 固阳县| 葵青区| 自治县| 平阴县| 太谷县| 桃源县| 武山县| 资讯| 改则县| 清徐县| 灌云县| 莆田市| 兴安县| 赤壁市| 英山县| 丰城市| 天津市| 肃南| 青龙| 镇沅| 大宁县| 两当县| 青岛市| 高雄市| 府谷县| 龙岩市| 长白| 龙南县| 温宿县|