一、PPT旋转动画
1、在 PowerPoint 中打开需要添加旋转动画的幻灯片,选中想要旋转的形状或图片。
2、点击“动画”选项卡,在“效果”下拉菜单中选择“旋转”。
3、在“旋转”下拉菜单中选择“双向旋转”或“单向旋转”,并设置旋转的度数。
//示例代码 AnimationSet set = new AnimationSet(true); RotateAnimation rotate = new RotateAnimation(fromDegrees, toDegrees, pivotXType, pivotXValue, pivotYType, pivotYValue); set.addAnimation(rotate);
二、Android图片旋转动画
1、在drawable文件夹中添加需要旋转的图片。
2、在xml文件中添加ImageView,并设置旋转动画的属性。
<ImageView android:id="@+id/imageview" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/image" android:rotation="45" android:pivotX="50%" android:pivotY="50%"/>
3、在java文件中获取ImageView,并使用AnimatorSet设置旋转动画。
ImageView imageView = findViewById(R.id.imageview); ObjectAnimator rotateAnimator = ObjectAnimator.ofFloat(imageView, "rotation", 0f, 360f); rotateAnimator.setDuration(1000); rotateAnimator.setRepeatCount(ValueAnimator.INFINITE); rotateAnimator.setRepeatMode(ValueAnimator.RESTART); AnimatorSet set = new AnimatorSet(); set.playTogether(rotateAnimator); set.start();
三、Flash旋转动画怎么做
1、在Flash中添加需要旋转的图片或动画。
2、在“时间轴”上选择需要添加旋转动画的帧数。
3、点击“插入”选项卡,在“形状”下拉菜单中选择“形状运动”并设置旋转角度。
//示例代码 this.myTween = new flash.display.Tween(this, "rotation", Strong.easeInOut, 0, 360, 4, true);
四、Android页面跳转动画
1、在res文件夹中创建anim文件夹,添加需要使用的动画文件。
2、在java文件中使用overridePendingTransition方法设置跳转动画。
Intent intent = new Intent(MainActivity.this, SecondActivity.class); startActivity(intent); overridePendingTransition(R.anim.slide_in_right, R.anim.slide_out_left);
五、Android屏幕旋转
1、在AndroidManifest.xml文件中添加screenOrientation属性。
2、设置activity的screenOrientation为“portrait”或“landscape”。
<activity android:name=".MainActivity" android:screenOrientation="portrait" />
六、Android获取图片旋转角度
1、在java文件中获取图片的exif信息。
2、通过exif信息获取旋转角度。
//示例代码 ExifInterface exif = new ExifInterface(filepath); int orientation = exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_NORMAL); int degree = 0; switch (orientation) { case ExifInterface.ORIENTATION_ROTATE_90: degree = 90; break; case ExifInterface.ORIENTATION_ROTATE_180: degree = 180; break; case ExifInterface.ORIENTATION_ROTATE_270: degree = 270; break; }
七、Android View旋转
1、在java文件中获取需要旋转的View。
2、使用ObjectAnimator设置View的旋转属性。
//示例代码 View view = findViewById(R.id.myview); ObjectAnimator rotateAnimator = ObjectAnimator.ofFloat(view, "rotation", 0f, 360f); rotateAnimator.setDuration(1000); rotateAnimator.start();
八、Android Bitmap旋转
1、在java文件中获取需要旋转的Bitmap。
2、使用Matrix设置Bitmap的旋转属性。
//示例代码 Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.image); Matrix matrix = new Matrix(); matrix.postRotate(90); bitmap = Bitmap.createBitmap(bitmap, 0, 0, bitmap.getWidth(), bitmap.getHeight(), matrix, true);
九、Android禁止屏幕旋转
1、在AndroidManifest.xml文件中添加screenOrientation属性。
2、设置activity的screenOrientation为“portrait”。
<activity android:name=".MainActivity" android:screenOrientation="portrait" />