আমি কেবলমাত্র উত্স কোডটি পড়েছি 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
বা অন্য কথায়, সর্বাধিক প্রস্থটি চিত্রের প্রস্থের সমান।
এর অর্থ হ'ল আপনি যদি কোন সঠিক আকার সেট না করেন, চিত্রগুলি কখনও বড় হয় না । আমি এটিকে একটি বাগ হিসাবে বিবেচনা করি, তবে গুগল নোটিশ নিতে বা এটি ঠিক করার জন্য সৌভাগ্য। সম্পাদনা করুন: আমার নিজের শব্দগুলি খাওয়ার পরে, আমি একটি বাগ রিপোর্ট জমা দিয়েছিলাম এবং তারা বলে যে এটি ভবিষ্যতের প্রকাশে স্থির হয়েছে!
আর একটি সমাধান
এখানে আরেকটি subclassed কার্যসংক্রান্ত নেই, কিন্তু আপনি উচিত (তত্ত্ব, আমি সত্যিই এটা অনেক পরীক্ষাও দেইনি কয়েকটা!) যে কোন জায়গায় আপনি এটি ব্যবহার করতে সক্ষম হতে 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);
}
}
}