3

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

RotateAnimation 的所有数据都存储在 xml 文件中:

<?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"
4

5 回答 5

3

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

RotateAnimation rotateAnimation = new RotateAnimation(fromDegrees, toDegrees);
于 2012-10-05T08:16:42.563 回答
0

尝试以下代码,它可能会工作:

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

主要代码:

  Animation rotation = AnimationUtils.loadAnimation(this, R.anim.rotation);
    myView.startAnimation(rotation);
于 2012-10-05T07:55:20.820 回答
0

尝试另一个:

     Matrix matrix=new Matrix();
 imageView.setScaleType(ScaleType.MATRIX);   //required
 matrix.postRotate((float) angle, pivX, pivY);
 imagView.setImageMatrix(matrix);
于 2012-10-05T07:56:11.303 回答
0
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
        android:pivotX="50%"
        android:pivotY="50%"
        android:fromDegrees="0"
        android:toDegrees="360"
        android:duration="0"

        >
  <shape 
    android:shape="ring"
    android:innerRadiusRatio="2"
    android:thicknessRatio="10"
    android:useLevel="false">
    <shape
      android:width="76dip"
      android:height="76dip"/>
    <gradient android:type="sweep"
              android:useLevel="false"
              android:startColor="#F57847"
              android:endColor="#E67E55"
              android:angle="0"/>    
  </shape>



</rotate>**strong text**
于 2015-11-14T12:20:38.957 回答
0

在 values 文件夹中使用带有预定义整数的 xml 文件。Android 说文件名无所谓,但你不妨把它放在一个名为res/values/integers.xml. 更多关于这种类型的 xml 文件的信息。基本上,将您的度数值作为整数放入 中integers.xml,在您的旋转 xml 代码中使用它们,并在您的活动代码中使用getResources().getInteger(). 这是示例代码:

integers.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <integer name="from_degrees">0</integer>
    <integer name="to_degrees">360</integer>
</resources>

在旋转 xml 中:

...
android:fromDegrees="@integer/from_degrees"
android:toDegrees="@integer/to_degrees"
...

在java代码中:

int fromDegrees = getResources().getInteger(R.integer.from_degrees);
int toDegrees = getResources().getInteger(R.integer.to_degrees);
于 2016-09-18T05:49:18.227 回答