मैं सिर्फ इसके लिए स्रोत कोड पढ़ता हूं ImageView
और यह मूल रूप से इस धागे में उपवर्ग समाधानों का उपयोग किए बिना असंभव है। में ImageView.onMeasure
हम इन पंक्तियों के लिए मिलता है:
// Get the max possible width given our constraints
widthSize = resolveAdjustedSize(w + pleft + pright, mMaxWidth, widthMeasureSpec);
// Get the max possible height given our constraints
heightSize = resolveAdjustedSize(h + ptop + pbottom, mMaxHeight, heightMeasureSpec);
कहाँ h
और w
छवि के आयाम हैं, और p*
पैडिंग है।
और तब:
private int resolveAdjustedSize(int desiredSize, int maxSize,
int measureSpec) {
...
switch (specMode) {
case MeasureSpec.UNSPECIFIED:
/* Parent says we can be as big as we want. Just don't be larger
than max size imposed on ourselves.
*/
result = Math.min(desiredSize, maxSize);
इसलिए यदि आपके पास layout_height="wrap_content"
यह सेट है widthSize = w + pleft + pright
, या दूसरे शब्दों में, अधिकतम चौड़ाई छवि की चौड़ाई के बराबर है।
इसका मतलब यह है कि जब तक आप एक सटीक आकार निर्धारित नहीं करते हैं, तब तक चित्र बढ़े हुए नहीं होते हैं । मैं इसे एक बग मानता हूं, लेकिन सौभाग्य है कि Google को नोटिस लेने या इसे ठीक करने के लिए Google मिल रहा है। संपादित करें: अपने स्वयं के शब्दों का भोजन करते हुए, मैंने एक बग रिपोर्ट प्रस्तुत की और वे कहते हैं कि यह भविष्य के रिलीज में तय किया गया है!
एक और समाधान
यहाँ एक और उपवर्गित वर्कअराउंड है, लेकिन आपको (सिद्धांत रूप में, मुझे वास्तव में इसका अधिक परीक्षण नहीं करना चाहिए !) कहीं भी इसका उपयोग करने में सक्षम होना चाहिए ImageView
। इसका उपयोग करने के लिए सेट layout_width="match_parent"
, और layout_height="wrap_content"
। यह स्वीकृत समाधान की तुलना में बहुत अधिक सामान्य है। जैसे आप फिट-टू-हाइट के साथ-साथ फिट-टू-वेड भी कर सकते हैं।
import android.content.Context;
import android.util.AttributeSet;
import android.widget.ImageView;
// This works around the issue described here: http://stackoverflow.com/a/12675430/265521
public class StretchyImageView extends ImageView
{
public StretchyImageView(Context context)
{
super(context);
}
public StretchyImageView(Context context, AttributeSet attrs)
{
super(context, attrs);
}
public StretchyImageView(Context context, AttributeSet attrs, int defStyle)
{
super(context, attrs, defStyle);
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec)
{
// Call super() so that resolveUri() is called.
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
// If there's no drawable we can just use the result from super.
if (getDrawable() == null)
return;
final int widthSpecMode = MeasureSpec.getMode(widthMeasureSpec);
final int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec);
int w = getDrawable().getIntrinsicWidth();
int h = getDrawable().getIntrinsicHeight();
if (w <= 0)
w = 1;
if (h <= 0)
h = 1;
// Desired aspect ratio of the view's contents (not including padding)
float desiredAspect = (float) w / (float) h;
// We are allowed to change the view's width
boolean resizeWidth = widthSpecMode != MeasureSpec.EXACTLY;
// We are allowed to change the view's height
boolean resizeHeight = heightSpecMode != MeasureSpec.EXACTLY;
int pleft = getPaddingLeft();
int pright = getPaddingRight();
int ptop = getPaddingTop();
int pbottom = getPaddingBottom();
// Get the sizes that ImageView decided on.
int widthSize = getMeasuredWidth();
int heightSize = getMeasuredHeight();
if (resizeWidth && !resizeHeight)
{
// Resize the width to the height, maintaining aspect ratio.
int newWidth = (int) (desiredAspect * (heightSize - ptop - pbottom)) + pleft + pright;
setMeasuredDimension(newWidth, heightSize);
}
else if (resizeHeight && !resizeWidth)
{
int newHeight = (int) ((widthSize - pleft - pright) / desiredAspect) + ptop + pbottom;
setMeasuredDimension(widthSize, newHeight);
}
}
}