28 lines
767 B
Java
28 lines
767 B
Java
package o;
|
|
|
|
import android.graphics.Matrix;
|
|
import android.util.Property;
|
|
import android.widget.ImageView;
|
|
|
|
/* renamed from: o.qfG, reason: case insensitive filesystem */
|
|
/* loaded from: classes2.dex */
|
|
public final class C16719qfG extends Property<ImageView, Matrix> {
|
|
private final Matrix a;
|
|
|
|
@Override // android.util.Property
|
|
public final /* synthetic */ Matrix get(ImageView imageView) {
|
|
this.a.set(imageView.getImageMatrix());
|
|
return this.a;
|
|
}
|
|
|
|
@Override // android.util.Property
|
|
public final /* synthetic */ void set(ImageView imageView, Matrix matrix) {
|
|
imageView.setImageMatrix(matrix);
|
|
}
|
|
|
|
public C16719qfG() {
|
|
super(Matrix.class, "imageMatrixProperty");
|
|
this.a = new Matrix();
|
|
}
|
|
}
|