如何在Android中实现平滑的图像旋转?


此示例演示如何在Android中实现平滑的图像旋转。

步骤 1 - 在Android Studio中创建一个新项目,转到文件 ⇒ 新建项目,并填写所有必需的详细信息以创建新项目。

步骤 2 - 将以下代码添加到res/layout/activity_main.xml。

<?xml version = "1.0" encoding = "utf-8"?>
<LinearLayout xmlns:android = "http://schemas.android.com/apk/res/android"
   android:id = "@+id/parent"
   xmlns:tools = "http://schemas.android.com/tools"
   android:layout_width = "match_parent"
   android:layout_height = "match_parent"
   tools:context = ".MainActivity"
   android:gravity = "center"
   android:orientation = "vertical">
   <TextView
      android:id = "@+id/text"
      android:textSize = "18sp"
      android:textAlignment = "center"
      android:text = "rorate image"
      android:layout_width = "match_parent"
      android:layout_height = "wrap_content" />
   <ImageView
      android:id = "@+id/rotateImage"
      android:layout_width = "match_parent"
      android:layout_marginTop = "10dp"
      android:layout_height = "wrap_content"
      android:src = "@mipmap/ic_launcher"
      android:layerType = "software" />
</LinearLayout>

在上面的代码中,我们使用了TextView和ImageView。当您点击TextView时,图像将沿逆时针方向旋转。

步骤 3 - 将以下代码添加到src/MainActivity.java

package com.example.andy.myapplication;
import android.os.Build;
import android.os.Bundle;
import android.support.annotation.RequiresApi;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.view.animation.Animation;
import android.view.animation.LinearInterpolator;
import android.view.animation.RotateAnimation;
import android.widget.ImageView;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
   int view = R.layout.activity_main;
   TextView text;
   ImageView image;
   @RequiresApi(api = Build.VERSION_CODES.JELLY_BEAN)
   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(view);
      text = findViewById(R.id.text);
      image = findViewById(R.id.rotateImage);
      text.setOnClickListener(new View.OnClickListener() {
         @Override
         public void onClick(View v) {
            RotateAnimation rotate = new RotateAnimation(0, 180, Animation.RELATIVE_TO_SELF, 0.5f,          Animation.RELATIVE_TO_SELF, 0.5f);
            rotate.setDuration(5000);
            rotate.setInterpolator(new LinearInterpolator());
            image.startAnimation(rotate);
         }
      });
}
}

在上面的代码中,我们使用了RotateAnimation类。它是Android中预定义的类。要使用以下代码旋转图像 -

RotateAnimation rotate = new RotateAnimation(0, 180, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
rotate.setDuration(5000);
rotate.setInterpolator(new LinearInterpolator());
image.startAnimation(rotate);

让我们尝试运行您的应用程序。我假设您已将您的实际Android手机设备连接到您的计算机。要从Android Studio运行应用程序,请打开您的一个项目活动文件,然后单击工具栏中的运行 图标。选择您的移动设备作为选项,然后检查您的移动设备,它将显示您的默认屏幕 -

在上面的代码中,它显示了初始屏幕,当用户点击TextView时,它将旋转图像,如下所示 -

点击此处下载项目代码

更新于: 2019年7月30日

1K+ 浏览量

开启你的职业生涯

通过完成课程获得认证

开始学习
广告

© . All rights reserved.