feat:align Android and iOS treat ImageView's scale type

This commit is contained in:
pengfei.zhou 2020-03-25 22:49:47 +08:00 committed by osborn
parent a7e7e550e9
commit 0abf8533db
2 changed files with 91 additions and 11 deletions

View File

@ -18,6 +18,7 @@ package pub.doric.shader;
import android.graphics.Bitmap; import android.graphics.Bitmap;
import android.graphics.BitmapFactory; import android.graphics.BitmapFactory;
import android.graphics.Color; import android.graphics.Color;
import android.graphics.drawable.BitmapDrawable;
import android.graphics.drawable.ColorDrawable; import android.graphics.drawable.ColorDrawable;
import android.graphics.drawable.Drawable; import android.graphics.drawable.Drawable;
import android.text.TextUtils; import android.text.TextUtils;
@ -30,7 +31,11 @@ import com.bumptech.glide.load.DataSource;
import com.bumptech.glide.load.engine.GlideException; import com.bumptech.glide.load.engine.GlideException;
import com.bumptech.glide.request.RequestListener; import com.bumptech.glide.request.RequestListener;
import com.bumptech.glide.request.RequestOptions; import com.bumptech.glide.request.RequestOptions;
import com.bumptech.glide.request.target.DrawableImageViewTarget;
import com.bumptech.glide.request.target.ImageViewTarget;
import com.bumptech.glide.request.target.SizeReadyCallback;
import com.bumptech.glide.request.target.Target; import com.bumptech.glide.request.target.Target;
import com.bumptech.glide.request.transition.Transition;
import com.github.pengfeizhou.jscore.JSONBuilder; import com.github.pengfeizhou.jscore.JSONBuilder;
import com.github.pengfeizhou.jscore.JSObject; import com.github.pengfeizhou.jscore.JSObject;
import com.github.pengfeizhou.jscore.JSValue; import com.github.pengfeizhou.jscore.JSValue;
@ -38,6 +43,7 @@ import com.github.pengfeizhou.jscore.JSValue;
import java.util.regex.Matcher; import java.util.regex.Matcher;
import java.util.regex.Pattern; import java.util.regex.Pattern;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable; import androidx.annotation.Nullable;
import jp.wasabeef.glide.transformations.BlurTransformation; import jp.wasabeef.glide.transformations.BlurTransformation;
@ -68,6 +74,7 @@ public class ImageNode extends ViewNode<ImageView> {
protected ImageView build() { protected ImageView build() {
ImageView imageView = new ImageView(getContext()); ImageView imageView = new ImageView(getContext());
imageView.setScaleType(ImageView.ScaleType.CENTER_CROP); imageView.setScaleType(ImageView.ScaleType.CENTER_CROP);
imageView.setAdjustViewBounds(true);
return imageView; return imageView;
} }
@ -140,6 +147,7 @@ public class ImageNode extends ViewNode<ImageView> {
RequestBuilder<Drawable> requestBuilder = Glide.with(getContext()) RequestBuilder<Drawable> requestBuilder = Glide.with(getContext())
.load(url); .load(url);
try { try {
requestBuilder = requestBuilder.apply(new RequestOptions().override(Target.SIZE_ORIGINAL));
if (isBlur) { if (isBlur) {
requestBuilder = requestBuilder requestBuilder = requestBuilder
.apply(RequestOptions .apply(RequestOptions
@ -173,15 +181,32 @@ public class ImageNode extends ViewNode<ImageView> {
@Override @Override
public boolean onResourceReady(Drawable resource, Object model, Target<Drawable> target, DataSource dataSource, boolean isFirstResource) { public boolean onResourceReady(Drawable resource, Object model, Target<Drawable> target, DataSource dataSource, boolean isFirstResource) {
if (!TextUtils.isEmpty(loadCallbackId)) { if (!TextUtils.isEmpty(loadCallbackId)) {
callJSResponse(loadCallbackId, new JSONBuilder() if (resource instanceof BitmapDrawable) {
.put("width", DoricUtils.px2dp(resource.getIntrinsicWidth())) Bitmap bitmap = ((BitmapDrawable) resource).getBitmap();
.put("height", DoricUtils.px2dp(resource.getIntrinsicHeight())) callJSResponse(loadCallbackId, new JSONBuilder()
.toJSONObject()); .put("width", DoricUtils.px2dp(bitmap.getWidth()))
.put("height", DoricUtils.px2dp(bitmap.getHeight()))
.toJSONObject());
} else {
callJSResponse(loadCallbackId, new JSONBuilder()
.put("width", DoricUtils.px2dp(resource.getIntrinsicWidth()))
.put("height", DoricUtils.px2dp(resource.getIntrinsicHeight()))
.toJSONObject());
}
} }
return false; return false;
} }
}) }).into(new DrawableImageViewTarget(mView) {
.into(mView); @Override
public void getSize(@NonNull SizeReadyCallback cb) {
cb.onSizeReady(SIZE_ORIGINAL, SIZE_ORIGINAL);
}
@Override
protected void setResource(@Nullable Drawable resource) {
super.setResource(resource);
}
});
} }
@Override @Override
@ -249,10 +274,18 @@ public class ImageNode extends ViewNode<ImageView> {
Drawable drawable = getContext().getResources().getDrawable(resId); Drawable drawable = getContext().getResources().getDrawable(resId);
view.setImageResource(resId); view.setImageResource(resId);
if (!TextUtils.isEmpty(loadCallbackId)) { if (!TextUtils.isEmpty(loadCallbackId)) {
callJSResponse(loadCallbackId, new JSONBuilder() if (drawable instanceof BitmapDrawable) {
.put("width", DoricUtils.px2dp(drawable.getIntrinsicWidth())) Bitmap bitmap = ((BitmapDrawable) drawable).getBitmap();
.put("height", DoricUtils.px2dp(drawable.getIntrinsicHeight())) callJSResponse(loadCallbackId, new JSONBuilder()
.toJSONObject()); .put("width", DoricUtils.px2dp(bitmap.getWidth()))
.put("height", DoricUtils.px2dp(bitmap.getHeight()))
.toJSONObject());
} else {
callJSResponse(loadCallbackId, new JSONBuilder()
.put("width", DoricUtils.px2dp(drawable.getIntrinsicWidth()))
.put("height", DoricUtils.px2dp(drawable.getIntrinsicHeight()))
.toJSONObject());
}
} }
} else { } else {
if (!TextUtils.isEmpty(loadCallbackId)) { if (!TextUtils.isEmpty(loadCallbackId)) {

View File

@ -24,6 +24,53 @@
#import "Doric.h" #import "Doric.h"
#import "YYWebImage.h" #import "YYWebImage.h"
@interface DoricImageView : YYAnimatedImageView
@end
@implementation DoricImageView
- (CGSize)measureSize:(CGSize)targetSize {
CGFloat width = self.width;
CGFloat height = self.height;
DoricLayoutConfig *config = self.layoutConfig;
if (!config) {
config = [DoricLayoutConfig new];
}
if (config.widthSpec == DoricLayoutAtMost
|| config.widthSpec == DoricLayoutWrapContent) {
width = targetSize.width - config.margin.left - config.margin.right;
}
if (config.heightSpec == DoricLayoutAtMost
|| config.heightSpec == DoricLayoutWrapContent) {
height = targetSize.height - config.margin.top - config.margin.bottom;
}
DoricPadding padding = self.padding;
CGSize contentSize = [self sizeThatFits:CGSizeMake(
width - padding.left - padding.right,
height - padding.top - padding.bottom)];
if (config.widthSpec == DoricLayoutWrapContent) {
width = contentSize.width + padding.left + padding.right;
if (config.heightSpec != DoricLayoutWrapContent && contentSize.width != 0 && contentSize.height != 0) {
width = contentSize.width / contentSize.height * height + padding.left + padding.right;
}
}
if (config.heightSpec == DoricLayoutWrapContent) {
height = contentSize.height + padding.top + padding.bottom;
if (config.widthSpec != DoricLayoutWrapContent && contentSize.width != 0 && contentSize.height != 0) {
height = contentSize.height / contentSize.width * width + padding.top + padding.bottom;
}
}
if (config.weight) {
if ([self.superview isKindOfClass:[DoricVLayoutView class]]) {
height = self.height;
} else if ([self.superview isKindOfClass:[DoricHLayoutView class]]) {
width = self.width;
}
}
return CGSizeMake(width, height);
}
@end
@interface DoricImageNode () @interface DoricImageNode ()
@property(nonatomic, copy) NSString *loadCallbackId; @property(nonatomic, copy) NSString *loadCallbackId;
@property(nonatomic, assign) UIViewContentMode contentMode; @property(nonatomic, assign) UIViewContentMode contentMode;
@ -37,7 +84,7 @@ @interface DoricImageNode ()
@implementation DoricImageNode @implementation DoricImageNode
- (UIImageView *)build { - (UIImageView *)build {
return [[YYAnimatedImageView new] also:^(UIImageView *it) { return [[DoricImageView new] also:^(UIImageView *it) {
it.clipsToBounds = YES; it.clipsToBounds = YES;
it.contentMode = UIViewContentModeScaleAspectFill; it.contentMode = UIViewContentModeScaleAspectFill;
}]; }];