我正在开发一款游戏,用户需要点击ImageView中的图像来旋转它。在每个拍子图像上顺时针旋转90度。 但是图像需要时间从旧位置旋转到新位置。这妨碍了游戏体验。我使用了以下内容:
protected void onCreate(Bundle savedInstanceState)
{
...
...
imgview = (ImageView)findViewById(R.id.imageView1);
imgview.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
Matrix matrix = new Matrix();
matrix.postRotate(90);
Bitmap myImg = getBitmapFromDrawable(imgview.getDrawable());
Bitmap rotated = Bitmap.createBitmap(myImg,0,0,myImg.getWidth(),myImg.getHeight(),matrix,true);
imgview.setImageBitmap(rotated);
}
});
我想知道是否有其他方式旋转图片 不会造成任何延迟轮换。
答案 0 :(得分:32)
我也尝试过一次,找不到任何其他解决方案但使用动画。我是怎么做的。
private void rotate(float degree) {
final RotateAnimation rotateAnim = new RotateAnimation(0.0f, degree,
RotateAnimation.RELATIVE_TO_SELF, 0.5f,
RotateAnimation.RELATIVE_TO_SELF, 0.5f);
rotateAnim.setDuration(0);
rotateAnim.setFillAfter(true);
imgview.startAnimation(rotateAnim);
}
答案 1 :(得分:15)
您不需要旋转对象,旋转视图应该足够了。 如果您的目标API> = 11,您可以随时执行此操作。
mImageView.setRotation(angle);
干杯。
答案 2 :(得分:5)
简短方法
View.animate().rotation(90).setDuration(0);
答案 3 :(得分:-3)
您是否尝试使用自定义视图扩展imageview并在后台线程中旋转图像?