1
A
答えて
3
は.......開始および程度終了の
RotateAnimation rotate = new RotateAnimation(180, 360, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
rotate.setDuration(500);
imageview.startAnimation(rotate);
最初の二つのパラメータ画像を回転するUに役立つかもしれません。あなたがそれを行うことができマトリックスを使用して
6
、
何かのように、
img=(ImageView)findViewById(R.id.ImageView01);
Bitmap bmp = BitmapFactory.decodeResource(getResources(), R.drawable.refresh);
// Getting width & height of the given image.
int w = bmp.getWidth();
int h = bmp.getHeight();
// Setting post rotate to 90
Matrix mtx = new Matrix();
mtx.postRotate(90);
// Rotating Bitmap
Bitmap rotatedBMP = Bitmap.createBitmap(bmp, 0, 0, w, h, mtx, true);
BitmapDrawable bmd = new BitmapDrawable(rotatedBMP);
img.setImageDrawable(bmd);
または使用アニメーション
RotateAnimation rAnim = new RotateAnimation(0, 359, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
rAnim.setDuration(1000);
imageview.startAnimation(rAnim);
EDIT:この質問で見てもHow to make a smooth image rotation in Android?
1
これは私が 画像の高さと幅が
new CountDownTimer(2000, 100) {
public void onTick(long millisUntilFinished) {
degrees=degrees +(rm.nextFloat()*100);
postInvalidate();
}
public void onFinish() {
}
}.start();
あるWタイマがondraw方法で
Matrix m = new Matrix();
m.setRotate(degrees,w/2,h/2);
bmp=BitmapFactory.decodeResource(context.getResources(),R.drawable.wfortune_wheel);
canvas.drawBitmap(bmp, m, pb);
をこのコードを入れて、すべての100micro秒 時間後pondrawのmthodを呼び出しを行っている帽子です
}
関連する問題
- 1. アンドロイドで背景画像を回転させる方法
- 2. アンドロイドでタッチして画像ビューを回転させる方法と画像ビューの幅を広げる方法
- 3. WPFで複数回画像を回転させる方法
- 4. アンドロイドのタッチで固定ポイントで画像を回転させる方法
- 5. android ndkを使ってアンドロイドで画像を回転させる方法
- 6. アンドロイドで画像をプログラムで回転して回転する方法は?
- 7. 画像を回転させずにバイキュービック補間で画像を回転する
- 8. jQueryrotateカーソルで複数の画像を回転させる方法
- 9. ダイヤル画像をその姿勢で回転させる方法。
- 10. テンソルフローで画像を回転させる方法は?
- 11. 円の経路で画像を回転させる方法
- 12. onTouchListenerで画像を回転させる方法は?
- 13. javascriptで画像を360度回転させる方法
- 14. 画像をクリックして回転させる方法
- 15. androidの画像ビューを回転させる方法
- 16. 画像の向きを270度回転させる方法(swift3)
- 17. 画像をアニメーション化して回転させる方法は?
- 18. 画像を回転させる方法(アニメーション)
- 19. 画像を連続的に回転させる方法は?
- 20. 画像を上下逆に回転させますが、水平方向に回転させる方法
- 21. 複数の画像を使って回転する車
- 22. 画像の自動回転は画像のピクセルを回転させますか?
- 23. アンドロイドで画像を反転/反転/カールする方法
- 24. オーバーレイされた輪郭が画像+輪郭回転後に整列していません.warpAffine with OpenCV
- 25. タッチで画像を回転させてアンドロイドの点を固定する
- 26. 画像を回転して画像を保存する方法
- 27. HTML5キャンバスで画像を反転/回転する方法
- 28. アンドロイドで全体の相対レイアウトを回転させる方法
- 29. html 5キャンバスで画像を描き、影で回転させる方法
- 30. Pythonでランダムな角度で3D画像を回転させる方法
+1:「Androidで滑らかな画像ローテーションを作成する方法」 – cbrulak