简体   繁体   English

可点击的图片

[英]Clickable Image

I am attempting to code into my android app an image that is rescaleable with the following code 我正在尝试将可使用以下代码重新缩放的图像编码到我的android应用中

    package million.tyler;

    import android.content.Intent;
    import android.graphics.Matrix;
    import android.graphics.PointF;
    import android.net.Uri;
    import android.util.FloatMath;
    import android.view.MotionEvent;
    import android.view.View;
    import android.view.View.OnTouchListener;
    import android.widget.ImageView;
    import android.widget.Toast;

    public class Touch implements OnTouchListener {

     // These matrices will be used to move and zoom image
     Matrix matrix = new Matrix();
     Matrix savedMatrix = new Matrix();

     // We can be in one of these 3 states
     static final int NONE = 0;
     static final int DRAG = 1;
     static final int ZOOM = 2;
     int mode = NONE;

     // Remember some things for zooming
     PointF start = new PointF();
     PointF mid = new PointF();
     float oldDist = 1f;


     @Override
     public boolean onTouch(View v, MotionEvent event) {
      ImageView view = (ImageView) v;
      // Dump touch event to log
      dumpEvent(event);

      // Handle touch events here...
      switch (event.getAction() & MotionEvent.ACTION_MASK) {
      case MotionEvent.ACTION_DOWN:
       savedMatrix.set(matrix);
       start.set(event.getX(), event.getY());
       mode = DRAG;
       break;
      case MotionEvent.ACTION_POINTER_DOWN:
       oldDist = spacing(event);
       if (oldDist > 10f) {
        savedMatrix.set(matrix);
        midPoint(mid, event);
        mode = ZOOM;
       }
       break;
      case MotionEvent.ACTION_UP:
      case MotionEvent.ACTION_POINTER_UP:
       mode = NONE;
       break;
      case MotionEvent.ACTION_MOVE:
       if (mode == DRAG) {
                // ...    
        matrix.set(savedMatrix);
        matrix.postTranslate(event.getX() - start.x, event.getY() - start.y);    
       } 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;
      }

      view.setImageMatrix(matrix);
      return true; // indicate event was handled
     }

     /** Show an event in the LogCat view, for debugging */
     private void dumpEvent(MotionEvent event) {
      String names[] = { "DOWN", "UP", "MOVE", "CANCEL", "OUTSIDE",
        "POINTER_DOWN", "POINTER_UP", "7?", "8?", "9?" };
      StringBuilder sb = new StringBuilder();
              int action = event.getAction();
      int actionCode = action & MotionEvent.ACTION_MASK;
      sb.append("event ACTION_").append(names[actionCode]);
      if (actionCode == MotionEvent.ACTION_POINTER_DOWN
        || actionCode == MotionEvent.ACTION_POINTER_UP) {
       sb.append("(pid ").append(
         action >> MotionEvent.ACTION_POINTER_ID_SHIFT);
       sb.append(")");
      }
      sb.append("[");
      for (int i = 0; i < event.getPointerCount(); i++) {
       sb.append("#").append(i);
       sb.append("(pid ").append(event.getPointerId(i));
       sb.append(")=").append((int) event.getX(i));
       sb.append(",").append((int) event.getY(i));
       if (i + 1 < event.getPointerCount())
        sb.append(";");
      }
      sb.append("]");
     }

     /** Determine the space between the first two fingers */
     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);
     }

     /** Calculate the mid point of the first two fingers */
     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);
     }

Along with this, I would like the image to be clickable in different regions. 与此同时,我希望图像可以在不同区域中单击。 Sort of like an image map in html. 有点像html中的图片映射。 I am new to coding so any help is appreciated. 我是编码新手,因此不胜感激。

This can achieved by Specifying the specific coordinates for the image like if user tapped in (0,0 to 100,100) fire some event. 这可以通过指定图像的特定坐标来实现,就像用户在(0,0到100,100)中轻击某些事件一样。

Or there is another way of doing things. 或者还有另一种做事方式。 You can use webview instead of imageview for loading of images. 您可以使用webview代替imageview来加载图像。 You can simply make HTML Map's for images and then can perform different functions. 您可以简单地为图像制作HTML地图,然后执行不同的功能。 Further you can get javascript events in your android code... Explore more by yourself...:P 此外,您还可以在Android代码中获取javascript事件...自己探索更多...:P

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM