android实现播放器反射性动画效果

mainActivity:


package smalt.play.show;

import android.app.Activity;
import android.os.Bundle;
import android.os.Handler;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.animation.Animation;
import android.view.animation.Animation.AnimationListener;
import android.view.animation.AnimationUtils;
import android.widget.ImageView;

public class Splayer2Activity extends Activity {
	ImageView ivImage;
	ImageView ivPlay;
	ImageView ivStop;
	ImageView ivPre;
	ImageView ivNext;
	ImageView ivShuffer;
	ImageView ivRepeat;
	Animation playAnim;// 播放按鈕動畫
	Animation stopAnim;// 播放按鈕動畫
	Animation preAnim;// 播放按鈕動畫
	Animation nextAnim;// 播放按鈕動畫
	Animation shufferAnim;// 播放按鈕動畫
	Animation repeatAnim;// 播放按鈕動畫

	void initView() { // 初始化
		ivImage = (ImageView) findViewById(R.id.player_image);
		ivPlay = (ImageView) findViewById(R.id.player_play);
		ivStop = (ImageView) findViewById(R.id.player_stop);
		ivNext = (ImageView) findViewById(R.id.player_next);
		ivPre = (ImageView) findViewById(R.id.player_pre);
		ivRepeat = (ImageView) findViewById(R.id.player_repeat);
		ivShuffer = (ImageView) findViewById(R.id.player_shuffle);

	}

	void initData() { // 實現動畫

		demoAnim();

	}

	void initListener() { // 監聽器
		playAnim.setAnimationListener(new AnimationListener() {

			public void onAnimationStart(Animation animation) {
				// TODO Auto-generated method stub

			}

			public void onAnimationRepeat(Animation animation) {
				// TODO Auto-generated method stub

			}

			public void onAnimationEnd(Animation animation) {
				// 動畫進行完后隱藏控件
				ivPlay.setVisibility(View.GONE);
				ivStop.setVisibility(View.GONE);
				ivPre.setVisibility(View.GONE);
				ivNext.setVisibility(View.GONE);
				ivRepeat.setVisibility(View.GONE);
				ivShuffer.setVisibility(View.GONE);
			}
		});
		ivImage.setOnClickListener(new OnClickListener() {

			public void onClick(View v) {
				// 點擊專輯封面顯示控件
				ivPlay.setVisibility(View.VISIBLE);
				ivStop.setVisibility(View.VISIBLE);
				ivPre.setVisibility(View.VISIBLE);
				ivNext.setVisibility(View.VISIBLE);
				ivRepeat.setVisibility(View.VISIBLE);
				ivShuffer.setVisibility(View.VISIBLE);
			}
		});
	}

	void demoAnim() {
		// 測試動畫
		playAnim = AnimationUtils.loadAnimation(this, R.anim.play_out);
		stopAnim = AnimationUtils.loadAnimation(this, R.anim.stop_out);
		preAnim = AnimationUtils.loadAnimation(this, R.anim.pre_out);
		nextAnim = AnimationUtils.loadAnimation(this, R.anim.next_out);
		shufferAnim = AnimationUtils.loadAnimation(this, R.anim.shuffer_out);
		repeatAnim = AnimationUtils.loadAnimation(this, R.anim.repeat_out);
		Handler mHandler = new Handler();
		mHandler.postDelayed(new Runnable() {

			public void run() {
				ivPlay.startAnimation(playAnim);
				ivStop.startAnimation(stopAnim);
				ivPre.startAnimation(preAnim);
				ivNext.startAnimation(nextAnim);
				ivRepeat.startAnimation(repeatAnim);
				ivShuffer.startAnimation(shufferAnim);
			}
		}, 2000);

	}

	/** Called when the activity is first created. */

	public void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.main);
		initView();
		initData();
		initListener();
	}
}

mainXML:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <RelativeLayout
        android:layout_width="300dp"
        android:layout_height="300dp"
        android:layout_centerInParent="true" >

        <!-- 專輯圖片 -->

        <ImageView
            android:id="@+id/player_image"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_centerInParent="true"
            android:src="@drawable/player_image"
            android:text="專輯" />
        <!-- 播放 -->

        <ImageView
            android:id="@+id/player_play"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            android:layout_centerHorizontal="true"
            android:paddingTop="10dp"
            android:src="@drawable/player_play_light" />
        <!-- 停止 -->

        <ImageView
            android:id="@+id/player_stop"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_centerHorizontal="true"
            android:paddingBottom="10dp"
            android:src="@drawable/player_stop_light" />
        <!-- 上一曲 -->

        <ImageView
            android:id="@+id/player_pre"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_centerVertical="true"
            android:paddingLeft="10dp"
            android:src="@drawable/player_prev_light" />
        <!-- 下一曲 -->

        <ImageView
            android:id="@+id/player_next"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_centerVertical="true"
            android:paddingRight="10dp"
            android:src="@drawable/player_next_light" />
        <!-- 右上隨機 -->

        <ImageView
            android:id="@+id/player_shuffle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:paddingRight="10dp"
            android:paddingTop="10dp"
            android:src="@drawable/player_shuffle_off" />
        <!-- 左上順序播放 -->

        <ImageView
            android:id="@+id/player_repeat"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:paddingLeft="10dp"
            android:paddingTop="10dp"
            android:src="@drawable/player_repeat_off" />
    </RelativeLayout>

</RelativeLayout>

动画效果类似,只贴一个实例:

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >

    <alpha
        android:duration="2500"
        android:fromAlpha="1.0"
        android:toAlpha="0.0" />

    <translate
        android:duration="2500"
        android:fromXDelta="0%p"
        android:fromYDelta="0%p"
        android:toXDelta="-800%p"
        android:toYDelta="0%p" />

    <!--
         <scale
        android:duration="3000"
        android:fillAfter="true"
        android:fromXScale="0"
        android:fromYScale="0"
        android:toXScale="1.0"
        android:toYScale="1.0" />





    -->

</set>

效果:所有控件向中心收缩滑动后消失,点击专辑封面重新显示


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值