Android-RotateAnimation-fromDegrees toDegrees变量

我是Android的新手,我有一个小问题.
我为RotateAnimation找到了以下代码:

xml文件,其中存储了RotateAnimation的所有数据:

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
    android:interpolator="@android:anim/linear_interpolator">
    <rotate
        android:fromDegrees="0"
        android:toDegrees="360"
        android:pivotX="50%"
        android:pivotY="50%"
        android:duration="20000"
        android:startOffset="0"/>
</set>

Java文件:

package com.example.helloword;

import android.app.Activity;
import android.os.Bundle;
import android.support.v4.app.NavUtils;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.animation.Animation;
import android.view.animation.AnimationUtils;
import android.widget.Button;
import android.widget.ImageView;

public class Rotation_test extends Activity {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_rotation_test);
//        getActionBar().setDisplayHomeAsUpEnabled(true);


        Button buttonRotateCenter = (Button) findViewById(R.id.rotatecenter);
        final ImageView floatingImage = (ImageView) findViewById(R.id.floatingimage);


        final Animation animationRotateCenter = AnimationUtils.loadAnimation(
                this, R.anim.rotate_center);
        buttonRotateCenter.setOnClickListener(new Button.OnClickListener() {

            public void onClick(View arg0) {
                // TODO Auto-generated method stub
                floatingImage.startAnimation(animationRotateCenter);
            }
        });
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        getMenuInflater().inflate(R.menu.activity_rotation_test, menu);
        return true;
    }


    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        switch (item.getItemId()) {
            case android.R.id.home:
                NavUtils.navigateUpFromSameTask(this);
                return true;
        }
        return super.onOptionsItemSelected(item);
    }

}

如何在xml文件中创建这两个值的变量?

    android:fromDegrees="0"
    android:toDegrees="360"

解决方法:

根据RotateAnimation类参考(http://developer.android.com/reference/android/view/animation/RotateAnimation.html),此类不提供fromDegrees和toDegrees的setter方法.因此,如果需要在代码中设置这些值,则必须在代码中创建RotateAnimation对象,并将fromDegrees和toDegrees值传递给构造函数.

RotateAnimation rotateAnimation = new RotateAnimation(fromDegrees, toDegrees);
上一篇:如何在具有单引号和双引号的JavaScript变量中存储字符串?


下一篇:[.net 面向对象编程基础] (13) 面向对象三大特性——多态