Android examples for java.lang:Math Matrix
new Scale Matrix
//package com.java2s; import android.graphics.Matrix; import android.graphics.RectF; public class Main { public static Matrix newScaleMatrix(RectF src, RectF dst) { Matrix scale = new Matrix(); scale.setRectToRect(src, dst, Matrix.ScaleToFit.CENTER); return scale; }//from ww w . j av a 2 s . c om }