2010-06-29 32 views
35

He escrito lo siguiente para girar mi icono en el centro de la pantalla y en su lugar gira alrededor de la esquina superior izquierda (es decir, origen x = 0, y = 0 de ImageView). Debería ser simple establecer algunos atributos de ImageView o RotateAnimation, pero no puedo resolverlo.¿Cómo girar un icono de Android en su punto central?

public class IconPromoActivity extends Activity { 
    private static final float ROTATE_FROM = 0.0f; 
    private static final float ROTATE_TO = -10.0f * 360.0f;// 3.141592654f * 32.0f; 

    /** Called when the activity is first created. */ 
    @Override 
    public void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.main); 

     ImageView favicon = (ImageView) findViewById(R.id.favicon); 

     RotateAnimation r; // = new RotateAnimation(ROTATE_FROM, ROTATE_TO); 
     r = new RotateAnimation(ROTATE_FROM, ROTATE_TO, 0, 0, 40, 0); 
     r.setDuration((long) 2*1500); 
     r.setRepeatCount(0); 
     favicon.startAnimation(r); 
    } 
} 

Respuesta

74

Probar: r = new RotateAnimation(ROTATE_FROM, ROTATE_TO, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);

+1

Puede explicar esto. Para que podamos modificarlo fácilmente según nuestras necesidades. – Nepster

+0

Eso es lo que estoy buscando. – tounaobun

4

Esto funciona para mí:

img = (ImageView)findViewById(R.id.ImageView01); 
RotateAnimation rotateAnimation = new RotateAnimation(30, 90, 
    Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f); 
+0

¿Cómo agregaría esto a una imagen para que gire continuamente hasta que le indique que se detenga? – Zapnologica

+0

'rotationAnimation.setDuration (Animation.INFINITE);' y cuando se desea detener la animación: 'ImageView myRotatingImage = (ImageView) mRoot.findViewById (R.id.my_rotating_image);' ' myRotatingImage.clearAnimation() ; ' –

+3

No es trabajo: java.lang.IllegalArgumentException: La duración de la animación no puede ser negativa –

Cuestiones relacionadas