Android 애니메이션 메 인 메뉴

11963 단어 android
현재 사용자 들 은 안 드 로 이 드 응용 프로그램의 UI 디자인 에 대한 요구 가 점점 높 아 지고 있 기 때문에 새로운 디자인 을 파악 하 는 것 이 필요 하 다. 예 를 들 어 메뉴, 전통 적 인 메뉴 는 사용자 의 수 요 를 만족 시 키 지 못 한다.그 중에서 원반 회전 메뉴 의 실현 이 좋 습 니 다. 이 메뉴 는 모두 안팎 3 층 네 비게 이 션 메뉴 로 나 뉘 어 있 습 니 다. 순서대로 외 향 에서 3 층 메뉴 를 닫 을 수도 있 고 반대로 열 수도 있 습 니 다. 그리고 원반 회전 애니메이션 효 과 를 동반 합 니 다. 먼저 효 과 를 보 겠 습 니 다.
원본 다운로드: http://download.csdn.net/detail/weidi1989/4588807
다음은 구체 적 인 코드 와 설명 입 니 다. 1. 메뉴 레이아웃 파일: 주로 세 개의 Ralative Layout 가 있 는데 바로 여러분 이 본 3 층 입 니 다. 그런데 그림 의 경사 가 어떻게 이 루어 졌 습 니까?사실은 가상 이 고 그림 은 바로 놓 여 있 으 며 안의 그림 은 기울어져 있다.
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

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

        <ImageButton
            android:id="@+id/home"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:background="@drawable/icon_home" />
    </RelativeLayout>

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

        <ImageButton
            android:id="@+id/search"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_margin="10dip"
            android:background="@drawable/icon_search" />

        <ImageButton
            android:id="@+id/menu"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_margin="6dip"
            android:background="@drawable/icon_menu" />

        <ImageButton
            android:id="@+id/myyouku"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_alignParentRight="true"
            android:layout_margin="10dip"
            android:background="@drawable/icon_myyouku" />
    </RelativeLayout>

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

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

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

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

        <ImageButton
            android:id="@+id/c4"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_margin="6dip"
            android:background="@drawable/channel4" />
        
                <ImageButton
            android:id="@+id/c5"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_above="@+id/c6"
            android:layout_marginBottom="6dip"
            android:layout_marginRight="8dip"
            android:layout_toLeftOf="@+id/c6"
            android:background="@drawable/channel5" />
        
                <ImageButton
            android:id="@+id/c6"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_above="@+id/c7"
            android:layout_marginBottom="12dip"
            android:layout_marginRight="28dip"
            android:layout_alignParentRight="true"
            android:background="@drawable/channel6" />
        
        
                <ImageButton
            android:id="@+id/c7"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_marginBottom="6dip"
            android:layout_marginRight="12dip"
            android:layout_alignParentRight="true"
            android:background="@drawable/channel7" />
    </RelativeLayout>

</RelativeLayout>
2.MainActivity:
package cn.oce.youku;

import cn.itcast.youku.R;
import android.os.Bundle;
import android.app.Activity;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.ImageButton;
import android.widget.RelativeLayout;

public class MainActivity extends Activity {

	private ImageButton home;
	private ImageButton menu;
	private RelativeLayout level2;
	private RelativeLayout level3;
	
	private boolean isLevel2Show = true;
	private boolean isLevel3Show = true;

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

		home = (ImageButton) findViewById(R.id.home);
		menu = (ImageButton) findViewById(R.id.menu);

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

		menu.setOnClickListener(new OnClickListener() {

			@Override
			public void onClick(View v) {
				if(isLevel3Show){
					//  3     
					MyAnimation.startAnimationOUT(level3, 500, 0);
				}else {
					//  3     
					MyAnimation.startAnimationIN(level3, 500);
				}
				
				isLevel3Show = !isLevel3Show;
			}
		});

		home.setOnClickListener(new OnClickListener() {

			@Override
			public void onClick(View v) {
				if(!isLevel2Show){
					//  2     
					MyAnimation.startAnimationIN(level2, 500);
				} else {
					if(isLevel3Show){
						//  3     
						MyAnimation.startAnimationOUT(level3, 500, 0);
						//  2     
						MyAnimation.startAnimationOUT(level2, 500, 500);
						isLevel3Show = !isLevel3Show;
					}
					else {
						//  2     
						MyAnimation.startAnimationOUT(level2, 500, 0);
					}
				}
				isLevel2Show = !isLevel2Show;
			}
		});

	}

}
3. 사용자 정의 애니메이션 류 MyAnimation:
package cn.oce.youku;

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

public class MyAnimation {
	//   
	public static void startAnimationIN(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);//    
		}
		
		Animation animation;
		/**
		 *     
		 * RotateAnimation(fromDegrees, toDegrees, pivotXType, pivotXValue, pivotYType, pivotYValue)
		 * fromDegrees       
		 * toDegrees       
		 * pivotXType X     
		 * pivotXValue x        
		 * pivotYType Y     
		 * pivotYValue Y        
		 */
		animation = new RotateAnimation(-180, 0, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 1.0f);
		animation.setFillAfter(true);//         
		animation.setDuration(duration);
		
		viewGroup.startAnimation(animation);
		
	}
	
	//   
	public static void startAnimationOUT(final ViewGroup viewGroup, int duration , int startOffSet){
		Animation 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);
		animation.setAnimationListener(new AnimationListener() {
			
			@Override
			public void onAnimationStart(Animation animation) {
				// TODO Auto-generated method stub
				
			}
			
			@Override
			public void onAnimationRepeat(Animation animation) {
				// TODO Auto-generated method stub
				
			}
			
			@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);
	}
}
이렇게 해서 3 급 네 비게 이 션 원반 회전 메뉴 가 완성 되 었 다. 앞으로 이런 우수한 UI 디자인 을 참고 할 수 있 고 심지어 새로운 수요 에 따라 더욱 좋 은 UI 를 만 들 수 있다.

좋은 웹페이지 즐겨찾기