Android控件Tween动画Demo

 Android动画中的Tween动画:是把控件对象不断的进行图像变化来产生旋转、平移、放缩和渐变等动画效果。
/**
 * 控件Tween动画
 * 
 * @description:
 * @author ldm
 * @date 2016-6-22 下午5:26:24
 */
public class TweenActivity extends Activity {
    private SeekBar seekBarX;// 拖动条控件
    private SeekBar seekBarY;
    private SeekBar scaleSeekBarX;
    private SeekBar scaleSeekBarY;
    private SeekBar rotationSeekBarX;
    private SeekBar rotationSeekBarY;
    private SeekBar rotationSeekBarZ;
    private Button button;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_tween);
        initViews();
        initEvents();
    }

    /**
     * 
     * @description:初始化控件
     * @author ldm
     * @date 2016-6-22 下午5:26:26
     */
    private void initViews() {
        button = (Button) findViewById(R.id.button);
        seekBarX = (SeekBar) findViewById(R.id.translationX);
        seekBarX.setMax(400);
        seekBarY = (SeekBar) findViewById(R.id.translationY);
        seekBarY.setMax(800);
        scaleSeekBarX = (SeekBar) findViewById(R.id.scaleX);
        scaleSeekBarX.setMax(50);
        scaleSeekBarX.setProgress(10);
        scaleSeekBarY = (SeekBar) findViewById(R.id.scaleY);
        scaleSeekBarY.setMax(50);
        scaleSeekBarY.setProgress(10);
        rotationSeekBarX = (SeekBar) findViewById(R.id.rotationX);
        rotationSeekBarX.setMax(360);
        rotationSeekBarY = (SeekBar) findViewById(R.id.rotationY);
        rotationSeekBarY.setMax(360);
        rotationSeekBarZ = (SeekBar) findViewById(R.id.rotationZ);
        rotationSeekBarZ.setMax(360);
    }

    /**
     * 
     * @description:控件设置监听事件
     * @author ldm
     * @date 2016-6-22 下午5:26:26
     */
    private void initEvents() {
        // 按钮X方向平移动画
        seekBarX.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {
            public void onStopTrackingTouch(SeekBar seekBar) {
            }

            public void onStartTrackingTouch(SeekBar seekBar) {
            }

            public void onProgressChanged(SeekBar seekBar, int progress,
                    boolean fromUser) {
                // X方向平移
                button.setTranslationX((float) progress);
            }
        });
        // 按钮Y方向平移动画
        seekBarY.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {

            public void onStopTrackingTouch(SeekBar seekBar) {
            }

            public void onStartTrackingTouch(SeekBar seekBar) {
            }

            public void onProgressChanged(SeekBar seekBar, int progress,
                    boolean fromUser) {
                // Y方向平移
                button.setTranslationY((float) progress);
            }
        });
        // 按钮X方向缩放动画
        scaleSeekBarX
                .setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {

                    public void onStopTrackingTouch(SeekBar seekBar) {
                    }

                    public void onStartTrackingTouch(SeekBar seekBar) {
                    }

                    public void onProgressChanged(SeekBar seekBar,
                            int progress, boolean fromUser) {
                        // X方向缩放
                        button.setScaleX((float) progress / 10f);
                    }
                });
        // 按钮Y方向缩放动画
        scaleSeekBarY
                .setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {

                    public void onStopTrackingTouch(SeekBar seekBar) {
                    }

                    public void onStartTrackingTouch(SeekBar seekBar) {
                    }

                    public void onProgressChanged(SeekBar seekBar,
                            int progress, boolean fromUser) {
                        // Y方向缩放
                        button.setScaleY((float) progress / 10f);
                    }
                });
        // 按钮X方向旋转动画
        rotationSeekBarX
                .setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {

                    public void onStopTrackingTouch(SeekBar seekBar) {
                    }

                    public void onStartTrackingTouch(SeekBar seekBar) {
                    }

                    public void onProgressChanged(SeekBar seekBar,
                            int progress, boolean fromUser) {
                        // X方向旋转
                        button.setRotationX((float) progress);
                    }
                });
        // 按钮Y方向旋转动画
        rotationSeekBarY
                .setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {

                    public void onStopTrackingTouch(SeekBar seekBar) {
                    }

                    public void onStartTrackingTouch(SeekBar seekBar) {
                    }

                    public void onProgressChanged(SeekBar seekBar,
                            int progress, boolean fromUser) {
                        // Y方向旋转
                        button.setRotationY((float) progress);
                    }
                });
        // 按钮Z方向旋转动画
        rotationSeekBarZ
                .setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {

                    public void onStopTrackingTouch(SeekBar seekBar) {
                    }

                    public void onStartTrackingTouch(SeekBar seekBar) {
                    }

                    public void onProgressChanged(SeekBar seekBar,
                            int progress, boolean fromUser) {
                        // 设置旋转
                        button.setRotation((float) progress);
                    }
                });
    }
}

—布局文件R.layout.activity_tween——-

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:splitMotionEvents="true" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="20dip"
        android:orientation="horizontal"
        android:splitMotionEvents="true" >

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:paddingLeft="5dip"
            android:paddingRight="5dip"
            android:text="TX"
            android:textStyle="bold" />

        <SeekBar
            android:id="@+id/translationX"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:orientation="horizontal" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:paddingLeft="15dip"
            android:paddingRight="5dip"
            android:text="TY"
            android:textStyle="bold" />

        <SeekBar
            android:id="@+id/translationY"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:orientation="horizontal" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="20dip"
        android:orientation="horizontal"
        android:splitMotionEvents="true" >

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:paddingLeft="5dip"
            android:paddingRight="5dip"
            android:text="SX"
            android:textStyle="bold" />

        <SeekBar
            android:id="@+id/scaleX"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:orientation="horizontal" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:paddingLeft="15dip"
            android:paddingRight="5dip"
            android:text="SY"
            android:textStyle="bold" />

        <SeekBar
            android:id="@+id/scaleY"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:orientation="horizontal" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="20dip"
        android:orientation="horizontal"
        android:splitMotionEvents="true" >

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:paddingLeft="5dip"
            android:paddingRight="5dip"
            android:text="X"
            android:textStyle="bold" />

        <SeekBar
            android:id="@+id/rotationX"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:orientation="horizontal" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:paddingLeft="15dip"
            android:paddingRight="5dip"
            android:text="Y"
            android:textStyle="bold" />

        <SeekBar
            android:id="@+id/rotationY"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:orientation="horizontal" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:paddingLeft="15dip"
            android:paddingRight="5dip"
            android:text="Z"
            android:textStyle="bold" />

        <SeekBar
            android:id="@+id/rotationZ"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:orientation="horizontal" />
    </LinearLayout>

    <Button
        android:id="@+id/rotatingButton"
        android:layout_width="200dip"
        android:layout_height="150dip"
        android:layout_marginLeft="50dip"
        android:layout_marginTop="50dip"
        android:text="Rotating Button" />

</LinearLayout>
  • 1
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值