2012-12-21 26 views
0

我正在使用this示例將縮放屬性縮放到我的圖像視圖。當我將圖像設置爲src到xml的這個imageview時,這個例子完美的工作。例如當圖像設置爲背景時,Android捏縮放不起作用

<com.zoom.TouchImageView 
    android:id="@+id/imageView1" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:scaleType="matrix" 
    android:src="@drawable/idontcare" /> 

但是,如果圖像不夠大,它不會覆蓋全屏。所以,而不是src如果我使用背景

<com.zoom.TouchImageView 
    android:id="@+id/imageView1" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:scaleType="matrix" 
    android:background="@drawable/idontcare" /> 

它覆蓋全屏幕,但然後捏縮放不起作用。如果我使用「fitXY」縮放類型pinchzoom不起作用,而不是「矩陣」。

如何實現全屏圖像以及pinchzoom?請幫忙。 在此先感謝。

回答

0

TouchImageView只支持src而不是ImageView中的背景。所以你可以做的是設置你的src所需的圖像,並保持其背景作爲圖像的背景顏色。類似的東西。

<com.zoom.TouchImageView 
    android:id="@+id/imageView1" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:scaleType="matrix" 
    android:src="@drawable/idontcare" 
    android:background="----- Background color of idontcare image--" /> 

試試吧!

+1

你好尼廷, 我不能這樣做,要達到我的目的,因爲圖像是動態的,它們可以有任何的背景顏色。 –

+0

好吧我可以理解,但是你將不得不以編程方式獲得圖像高度和寬度,並相應地更改佈局參數。 –

0

我從SD卡此活動使圖像的位置和設定爲imageview的作爲位圖圖像..

公共類ZoomInZoomOut延伸活動實現OnTouchListener {

private static final String TAG = "Touch"; 
@SuppressWarnings("unused") 
private static final float MIN_ZOOM = 1f,MAX_ZOOM = 1f; 

// These matrices will be used to scale points of the image 
Matrix matrix = new Matrix(); 
Matrix savedMatrix = new Matrix(); 

// The 3 states (events) which the user is trying to perform 
static final int NONE = 0; 
static final int DRAG = 1; 
static final int ZOOM = 2; 
int mode = NONE; 

// these PointF objects are used to record the point(s) the user is touching 
PointF start = new PointF(); 
PointF mid = new PointF(); 
float oldDist = 1f; 
private String loc; 
private ImageView view; 
private Bitmap bmImg; 
private ArrayList<String> array_loc; 
private Button next; 
private int total=0; 


/** Called when the activity is first created. */ 
@Override 
public void onCreate(Bundle savedInstanceState) 
{ 
    super.onCreate(savedInstanceState); 

    try{ 
    setContentView(R.layout.full_image); 

    Intent i = getIntent(); 
    loc = i.getExtras().getString("loc").toString().trim(); 
    int position = i.getExtras().getInt("id"); 


    next=(Button)findViewById(R.id.next); 
    view = (ImageView) findViewById(R.id.full_image_view); 

    bmImg = BitmapFactory.decodeFile(loc); 
    view.setImageBitmap(bmImg); 
    view.setOnTouchListener(this); 
    System.out.println("..."+position); 


    array_loc=new ArrayList<String>(); 
    String targetPath = "/mnt/sdcard/DCIM/Camera/"; 
    File targetDirector = new File(targetPath); 
    File[] files = targetDirector.listFiles(); 
    for (File file : files){ 
     array_loc.add(file.getAbsolutePath()); 
     total+=1; 
     } 
    System.out.println(array_loc); 
    System.out.println(array_loc.get(1)); 


    next.setOnClickListener(new OnClickListener() { 

    @Override 
    public void onClick(View v) { 
     // TODO Auto-generated method stub 

    } 
}); 
    }catch (Exception e) { 
    System.out.println(e); 
    } 
} 



public boolean onTouch(View v, MotionEvent event) 
{ 
    try{ 
    ImageView view = (ImageView) v; 
    view.setScaleType(ImageView.ScaleType.MATRIX); 
    float scale; 

    dumpEvent(event); 
    // Handle touch events here... 

    switch (event.getAction() & MotionEvent.ACTION_MASK) 
    { 
     case MotionEvent.ACTION_DOWN: // first finger down only 
              savedMatrix.set(matrix); 
              start.set(event.getX(), event.getY()); 
              Log.d(TAG, "mode=DRAG"); // write to LogCat 
              mode = DRAG; 
              break; 

     case MotionEvent.ACTION_UP: // first finger lifted 

     case MotionEvent.ACTION_POINTER_UP: // second finger lifted 

              mode = NONE; 
              Log.d(TAG, "mode=NONE"); 
              break; 

     case MotionEvent.ACTION_POINTER_DOWN: // first and second finger down 

              oldDist = spacing(event); 
              Log.d(TAG, "oldDist=" + oldDist); 
              if (oldDist > 5f) { 
               savedMatrix.set(matrix); 
               midPoint(mid, event); 
               mode = ZOOM; 
               Log.d(TAG, "mode=ZOOM"); 
              } 
              break; 

     case MotionEvent.ACTION_MOVE: 

              if (mode == DRAG) 
              { 
               matrix.set(savedMatrix); 
               matrix.postTranslate(event.getX() - start.x, event.getY() - start.y); // create the transformation in the matrix of points 
              } 
              else if (mode == ZOOM) 
              { 
               // pinch zooming 
               float newDist = spacing(event); 
               Log.d(TAG, "newDist=" + newDist); 
               if (newDist > 5f) 
               { 
                matrix.set(savedMatrix); 
                scale = newDist/oldDist; // setting the scaling of the 
                       // matrix...if scale > 1 means 
                       // zoom in...if scale < 1 means 
                       // zoom out 
                matrix.postScale(scale, scale, mid.x, mid.y); 
               } 
              } 
              break; 
    } 

    view.setImageMatrix(matrix); // display the transformation on screen 
    }catch (Exception e) { 
      System.out.println(e); 
      } 
    return true; // indicate event was handled 
} 

/* 
* -------------------------------------------------------------------------- 
* Method: spacing Parameters: MotionEvent Returns: float Description: 
* checks the spacing between the two fingers on touch 
* ---------------------------------------------------- 
*/ 

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); 
} 

/* 
* -------------------------------------------------------------------------- 
* Method: midPoint Parameters: PointF object, MotionEvent Returns: void 
* Description: calculates the midpoint between the 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); 
} 

/** Show an event in the LogCat view, for debugging */ 
private void dumpEvent(MotionEvent event) 
{ 
    try{ 
    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("]"); 
    Log.d("Touch Events ---------", sb.toString()); 
    }catch (Exception e) { 
      System.out.println(e); 
      } 
} 





@Override 
public void onBackPressed() { 
    // TODO Auto-generated method stub 

    Intent i = new Intent(getApplicationContext(),AndroidGridLayoutActivity.class); 
    startActivity(i); 
    ZoomInZoomOut.this.finish(); 
} 

}

+1

這和我正在做的一樣。不解決我的問題。 –