Android多點觸摸放大縮小圖片

來源:互聯網
上載者:User

標籤:android   http   os   io   art   cti   ar   line   

 

1.Activity

package com.fit.touchimage;

import android.app.Activity;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Matrix;
import android.graphics.PointF;
import android.os.Bundle;
import android.util.FloatMath;
import android.view.MotionEvent;
import android.view.View;
import android.view.View.OnTouchListener;
import android.view.ViewGroup.MarginLayoutParams;
import android.widget.ImageView;

public class MainActivity extends Activity implements OnTouchListener {
    /** Called when the activity is first created. */
 
 //放大縮小
 Matrix matrix=new Matrix();
 Matrix savedMatrix=new Matrix();
 
 PointF start=new PointF();
 PointF mid=new PointF();
 float oldDist;
 
 private ImageView myImageView;
 
 //模式
 static final int NONE=0;
 static final int DRAG=1;
 static final int ZOOM=2;
 int mode=NONE;
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
       
        myImageView=(ImageView) findViewById(R.id.myImage);
        myImageView.setOnTouchListener(this);
       
    }

 @Override
 public boolean onTouch(View v, MotionEvent event) {
  ImageView myImageView=(ImageView) v;
  switch(event.getAction()&MotionEvent.ACTION_MASK){
   //設定拖拉模式
  case MotionEvent.ACTION_DOWN:
   matrix.set(myImageView.getImageMatrix());
   savedMatrix.set(matrix);
   start.set(event.getX(),event.getY());
   mode=DRAG;
  break;
  case MotionEvent.ACTION_UP:
  case MotionEvent.ACTION_POINTER_UP:
   mode=NONE;
   break;
  
  //設定多點觸摸模式
  case MotionEvent.ACTION_POINTER_DOWN:
   oldDist=spacing(event);
   if(oldDist>10f){
    savedMatrix.set(matrix);
    midPoint(mid, event);
    mode=ZOOM;
   }
   break;
   //若為DRAG模式,則點擊移動圖片
  case MotionEvent.ACTION_MOVE:
   if(mode==DRAG){
    matrix.set(savedMatrix);
    matrix.postTranslate(event.getX()-start.x,event.getY()-start.y);
   }
   //若為ZOOM模式,則點擊觸摸縮放
   else if(mode==ZOOM){
    float newDist=spacing(event);
    if(newDist>10f){
     matrix.set(savedMatrix);
     float scale=newDist/oldDist;
     //設定碩放比例和圖片的中點位置
     matrix.postScale(scale,scale, mid.x,mid.y);
    }
   }
   break;
  } 
  myImageView.setImageMatrix(matrix);
  return true;
 }
 //計算移動距離
 private float spacing(MotionEvent event){
  float x=event.getX(0)-event.getX(1);
  float y=event.getY(0)-event.getY(1);
  return FloatMath.sqrt(x*x+y*y);
 }
 //計算中點位置
 private void midPoint(PointF point,MotionEvent event){
  float x=event.getX(0)+event.getX(1);
  float y=event.getY(0)+event.getY(1);
  point.set(x/2,y/2);
 }
}

 

2.布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:orientation="vertical" android:layout_width="fill_parent"
 android:layout_height="fill_parent" android:gravity="center">
 <ImageView android:layout_width="fill_parent"
  android:layout_height="fill_parent" android:scaleType="matrix"
  android:id="@+id/myImage" android:src="@drawable/xiaoxiong"/>
</LinearLayout>

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.