X
    Categories: Android

ImageViewの回転方法

ImageViewに表示させている画像を回転させるには色々ありますが、下記のコードで実現できます

ImageView iv = (ImageView)findViewById(R.id.imageView1);
Matrix m = new Matrix();
m.postRotate(rotate);
iv.setMatrix( m );

健巳:
Related Post