इनमें से किसी भी समाधान ने मेरे लिए काम नहीं किया, क्योंकि मैं एक वर्ग चाहता था जो क्षैतिज या ऊर्ध्वाधर दिशा से एक मनमानी फसल का समर्थन करता था, और मैं चाहता था कि मुझे गतिशील रूप से फसल को बदलने की अनुमति दी जाए। मुझे पिकासो की अनुकूलता की भी आवश्यकता थी , और पिकासो ने छवि को आकर्षक रूप से सेट किया।
मेरे कार्यान्वयन को सीधे AOSP में ImageView.java से अनुकूलित किया गया है। इसका उपयोग करने के लिए, XML में ऐसा घोषित करें:
<com.yourapp.PercentageCropImageView
android:id="@+id/view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="matrix"/>
स्रोत से, यदि आप एक शीर्ष फसल चाहते हैं, तो कॉल करें:
imageView.setCropYCenterOffsetPct(0f);
यदि आप एक निचली फसल चाहते हैं, तो कॉल करें:
imageView.setCropYCenterOffsetPct(1.0f);
यदि आप नीचे रास्ते में 1/3 फसल चाहते हैं, तो कॉल करें:
imageView.setCropYCenterOffsetPct(0.33f);
इसके अलावा, यदि आप एक अन्य फसल विधि का उपयोग करने का चुनाव करते हैं, जैसे कि fit_center, आप ऐसा कर सकते हैं और इस कस्टम तर्क में से कोई भी ट्रिगर नहीं होगा। (अन्य कार्यान्वयन केवल आप उनके फसल विधियों का उपयोग करते हैं)।
अंत में, मैंने एक विधि जोड़ी, redraw (), इसलिए यदि आप कोड में गतिशील रूप से अपनी फसल पद्धति / स्केल बदलने का चुनाव करते हैं, तो आप व्यू को redraw करने के लिए बाध्य कर सकते हैं। उदाहरण के लिए:
fullsizeImageView.setScaleType(ScaleType.FIT_CENTER);
fullsizeImageView.redraw();
अपने कस्टम टॉप-सेंटर-थर्ड क्रॉप पर वापस जाने के लिए, कॉल करें:
fullsizeImageView.setScaleType(ScaleType.MATRIX);
fullsizeImageView.redraw();
यहाँ वर्ग है:
import android.content.Context;
import android.graphics.Matrix;
import android.graphics.drawable.Drawable;
import android.util.AttributeSet;
import android.widget.ImageView;
public class PercentageCropImageView extends ImageView{
private Float mCropYCenterOffsetPct;
private Float mCropXCenterOffsetPct;
public PercentageCropImageView(Context context) {
super(context);
}
public PercentageCropImageView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public PercentageCropImageView(Context context, AttributeSet attrs,
int defStyle) {
super(context, attrs, defStyle);
}
public float getCropYCenterOffsetPct() {
return mCropYCenterOffsetPct;
}
public void setCropYCenterOffsetPct(float cropYCenterOffsetPct) {
if (cropYCenterOffsetPct > 1.0) {
throw new IllegalArgumentException("Value too large: Must be <= 1.0");
}
this.mCropYCenterOffsetPct = cropYCenterOffsetPct;
}
public float getCropXCenterOffsetPct() {
return mCropXCenterOffsetPct;
}
public void setCropXCenterOffsetPct(float cropXCenterOffsetPct) {
if (cropXCenterOffsetPct > 1.0) {
throw new IllegalArgumentException("Value too large: Must be <= 1.0");
}
this.mCropXCenterOffsetPct = cropXCenterOffsetPct;
}
private void myConfigureBounds() {
if (this.getScaleType() == ScaleType.MATRIX) {
Drawable d = this.getDrawable();
if (d != null) {
int dwidth = d.getIntrinsicWidth();
int dheight = d.getIntrinsicHeight();
Matrix m = new Matrix();
int vwidth = getWidth() - this.getPaddingLeft() - this.getPaddingRight();
int vheight = getHeight() - this.getPaddingTop() - this.getPaddingBottom();
float scale;
float dx = 0, dy = 0;
if (dwidth * vheight > vwidth * dheight) {
float cropXCenterOffsetPct = mCropXCenterOffsetPct != null ?
mCropXCenterOffsetPct.floatValue() : 0.5f;
scale = (float) vheight / (float) dheight;
dx = (vwidth - dwidth * scale) * cropXCenterOffsetPct;
} else {
float cropYCenterOffsetPct = mCropYCenterOffsetPct != null ?
mCropYCenterOffsetPct.floatValue() : 0f;
scale = (float) vwidth / (float) dwidth;
dy = (vheight - dheight * scale) * cropYCenterOffsetPct;
}
m.setScale(scale, scale);
m.postTranslate((int) (dx + 0.5f), (int) (dy + 0.5f));
this.setImageMatrix(m);
}
}
}
@Override
protected boolean setFrame(int l, int t, int r, int b) {
boolean changed = super.setFrame(l, t, r, b);
this.myConfigureBounds();
return changed;
}
@Override
public void setImageDrawable(Drawable d) {
super.setImageDrawable(d);
this.myConfigureBounds();
}
@Override
public void setImageResource(int resId) {
super.setImageResource(resId);
this.myConfigureBounds();
}
public void redraw() {
Drawable d = this.getDrawable();
if (d != null) {
this.setImageDrawable(null);
this.setImageDrawable(d);
}
}
}