如何才能让安卓上图片具备缩放功能?


该示例演示如何在安卓中实现图像缩放功能。

步骤 1 − 在 Android Studio 中创建一个新项目,依次转到 File ⇒ New Project,然后填写所有必需的详细信息以创建一个新项目。

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

import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.MotionEvent;
import android.view.ScaleGestureDetector;
import android.widget.ImageView;
public class MainActivity extends AppCompatActivity {
   private ScaleGestureDetector scaleGestureDetector;
   private float scaleFactor = 1f;
   private ImageView imageView;
   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
      imageView = findViewById(R.id.imageView);
      scaleGestureDetector = new ScaleGestureDetector(this, new ScaleListener());
   }
   public boolean onTouchEvent(MotionEvent motionEvent) {
      scaleGestureDetector.onTouchEvent(motionEvent);
      return true;
   }
   private class ScaleListener extends ScaleGestureDetector.SimpleOnScaleGestureListener {
      @Override
      public boolean onScale(ScaleGestureDetector scaleGestureDetector) {
         scaleFactor *= scaleGestureDetector.getScaleFactor();
         scaleFactor = Math.max(1f, Math.min(scaleFactor, 10.0f));
         imageView.setScaleX(scaleFactor);
         imageView.setScaleY(scaleFactor);
         return true;
      }
   }
}

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

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
   package="app.com.sample">
   <application
      android:allowBackup="true"
      android:icon="@mipmap/ic_launcher"
      android:label="@string/app_name"
      android:roundIcon="@mipmap/ic_launcher_round"
      android:supportsRtl="true"
      android:theme="@style/AppTheme">
      <activity android:name=".MainActivity">
         <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
         </intent-filter>
      </activity>
   </application>
</manifest>

步骤 4 − 将以下代码添加到 androidManifest.xml 中

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
   package="app.com.sample">
   <application
      android:allowBackup="true"
      android:icon="@mipmap/ic_launcher"
      android:label="@string/app_name"
      android:roundIcon="@mipmap/ic_launcher_round"
      android:supportsRtl="true"
      android:theme="@style/AppTheme">
      <activity android:name=".MainActivity">
         <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
         </intent-filter>
      </activity>
   </application>
</manifest>

让我们尝试运行你的应用程序。我假设你已经将你的安卓移动设备与电脑连接。要从安卓工作室运行该应用,请打开你的一个项目的活动文件,然后点击工具栏中的运行播放图标 图标。选择你的移动设备作为选项,然后查看你的移动设备,它将显示你的默认屏幕

更新于: 2020 年 7 月 8 日

342 次观看

开启你的职业

完成课程,获得认证

开始
广告