com.taobao.weex.adapter.IWXImgLoaderAdapter Java Examples
The following examples show how to use
com.taobao.weex.adapter.IWXImgLoaderAdapter.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: WXSDKEngine.java From weex-uikit with MIT License | 5 votes |
@Deprecated public static void init(Application application, String framework, IWXUserTrackAdapter utAdapter, IWXImgLoaderAdapter imgLoaderAdapter, IWXHttpAdapter httpAdapter) { initialize(application, new InitConfig.Builder() .setUtAdapter(utAdapter) .setHttpAdapter(httpAdapter) .setImgAdapter(imgLoaderAdapter) .build() ); }
Example #2
Source File: WXSDKEngine.java From weex with Apache License 2.0 | 5 votes |
public static void setIWXImgLoaderAdapter(IWXImgLoaderAdapter IWXImgLoaderAdapter) { if(IWXImgLoaderAdapter==null){ if(WXEnvironment.isApkDebugable()){ throw new IllegalStateException("ImageLoaderAdapter can not be set to null"); } return; } WXSDKManager.getInstance().setIWXImgLoaderAdapter(IWXImgLoaderAdapter); }
Example #3
Source File: WXSDKEngine.java From weex with Apache License 2.0 | 5 votes |
@Deprecated public static void init(Application application, String framework, IWXUserTrackAdapter utAdapter, IWXImgLoaderAdapter imgLoaderAdapter, IWXHttpAdapter httpAdapter) { initialize(application, new InitConfig.Builder() .setUtAdapter(utAdapter) .setHttpAdapter(httpAdapter) .setImgAdapter(imgLoaderAdapter) .build() ); }
Example #4
Source File: WXImage.java From weex with Apache License 2.0 | 5 votes |
@WXComponentProp(name = WXDomPropConstant.WX_ATTR_SRC) public void setSrc(String src) { WXImageStrategy imageStrategy = new WXImageStrategy(); imageStrategy.isClipping = true; WXImageSharpen imageSharpen = mDomObj.attr.getImageSharpen(); imageStrategy.isSharpen = imageSharpen == WXImageSharpen.SHARPEN; IWXImgLoaderAdapter imgLoaderAdapter = mInstance.getImgLoaderAdapter(); if (imgLoaderAdapter != null) { imgLoaderAdapter.setImage(src, ((ImageView) getView()), mDomObj.attr.getImageQuality(), imageStrategy); } }
Example #5
Source File: WXSDKEngine.java From ucar-weex-core with Apache License 2.0 | 5 votes |
@Deprecated public static void init(Application application, String framework, IWXUserTrackAdapter utAdapter, IWXImgLoaderAdapter imgLoaderAdapter, IWXHttpAdapter httpAdapter) { initialize(application, new InitConfig.Builder() .setUtAdapter(utAdapter) .setHttpAdapter(httpAdapter) .setImgAdapter(imgLoaderAdapter) .build() ); }
Example #6
Source File: WXSDKManager.java From weex with Apache License 2.0 | 4 votes |
public IWXImgLoaderAdapter getIWXImgLoaderAdapter() { return mIWXImgLoaderAdapter; }
Example #7
Source File: InitConfig.java From ucar-weex-core with Apache License 2.0 | 4 votes |
public IWXImgLoaderAdapter getImgAdapter() { return imgAdapter; }
Example #8
Source File: WXSDKEngine.java From weex with Apache License 2.0 | 4 votes |
public static IWXImgLoaderAdapter getIWXImgLoaderAdapter() { return WXSDKManager.getInstance().getIWXImgLoaderAdapter(); }
Example #9
Source File: InitConfig.java From ucar-weex-core with Apache License 2.0 | 4 votes |
public Builder setImgAdapter(IWXImgLoaderAdapter imgAdapter) { this.imgAdapter = imgAdapter; return this; }
Example #10
Source File: WXSDKInstance.java From weex with Apache License 2.0 | 4 votes |
@Deprecated public void setImgLoaderAdapter(IWXImgLoaderAdapter adapter) { }
Example #11
Source File: WXSDKInstance.java From weex with Apache License 2.0 | 4 votes |
public IWXImgLoaderAdapter getImgLoaderAdapter() { return WXSDKManager.getInstance().getIWXImgLoaderAdapter(); }
Example #12
Source File: WXImage.java From ucar-weex-core with Apache License 2.0 | 4 votes |
private void setRemoteSrc(Uri rewrited,int blurRadius) { WXImageStrategy imageStrategy = new WXImageStrategy(); imageStrategy.isClipping = true; WXImageSharpen imageSharpen = getDomObject().getAttrs().getImageSharpen(); imageStrategy.isSharpen = imageSharpen == WXImageSharpen.SHARPEN; imageStrategy.blurRadius = Math.max(0, blurRadius); this.mBlurRadius = blurRadius; imageStrategy.setImageListener(new WXImageStrategy.ImageListener() { @Override public void onImageFinish(String url, ImageView imageView, boolean result, Map extra) { if (getDomObject() != null && getDomObject().getEvents().contains(Constants.Event.ONLOAD)) { Map<String, Object> params = new HashMap<String, Object>(); Map<String, Object> size = new HashMap<>(2); if (imageView != null && imageView instanceof Measurable) { size.put("naturalWidth", ((Measurable) imageView).getNaturalWidth()); size.put("naturalHeight", ((Measurable) imageView).getNaturalHeight()); } else { size.put("naturalWidth", 0); size.put("naturalHeight", 0); } if (getDomObject() != null && containsEvent(Constants.Event.ONLOAD)) { params.put("success", result); params.put("size", size); fireEvent(Constants.Event.ONLOAD, params); } } } }); String placeholder=null; if(getDomObject().getAttrs().containsKey(Constants.Name.PLACEHOLDER)){ placeholder= (String) getDomObject().getAttrs().get(Constants.Name.PLACEHOLDER); }else if(getDomObject().getAttrs().containsKey(Constants.Name.PLACE_HOLDER)){ placeholder=(String)getDomObject().getAttrs().get(Constants.Name.PLACE_HOLDER); } if(placeholder!=null){ imageStrategy.placeHolder = getInstance().rewriteUri(Uri.parse(placeholder),URIAdapter.IMAGE).toString(); } IWXImgLoaderAdapter imgLoaderAdapter = getInstance().getImgLoaderAdapter(); if (imgLoaderAdapter != null) { imgLoaderAdapter.setImage(rewrited.toString(), getHostView(), getDomObject().getAttrs().getImageQuality(), imageStrategy); } }
Example #13
Source File: InitConfig.java From weex with Apache License 2.0 | 4 votes |
public Builder setImgAdapter(IWXImgLoaderAdapter imgAdapter) { this.imgAdapter = imgAdapter; return this; }
Example #14
Source File: InitConfig.java From weex with Apache License 2.0 | 4 votes |
public IWXImgLoaderAdapter getImgAdapter() { return imgAdapter; }
Example #15
Source File: WXSDKManager.java From weex with Apache License 2.0 | 4 votes |
void setIWXImgLoaderAdapter(IWXImgLoaderAdapter IWXImgLoaderAdapter) { if(IWXImgLoaderAdapter==null){ throw new NullPointerException("image adapter is null!"); } mIWXImgLoaderAdapter = IWXImgLoaderAdapter; }
Example #16
Source File: WXSDKInstance.java From ucar-weex-core with Apache License 2.0 | 4 votes |
public IWXImgLoaderAdapter getImgLoaderAdapter() { return WXSDKManager.getInstance().getIWXImgLoaderAdapter(); }
Example #17
Source File: WXSDKEngine.java From weex-uikit with MIT License | 4 votes |
public static IWXImgLoaderAdapter getIWXImgLoaderAdapter() { return WXSDKManager.getInstance().getIWXImgLoaderAdapter(); }
Example #18
Source File: WXSDKManager.java From ucar-weex-core with Apache License 2.0 | 4 votes |
public IWXImgLoaderAdapter getIWXImgLoaderAdapter() { return mIWXImgLoaderAdapter; }
Example #19
Source File: WXSDKInstance.java From weex-uikit with MIT License | 4 votes |
public IWXImgLoaderAdapter getImgLoaderAdapter() { return WXSDKManager.getInstance().getIWXImgLoaderAdapter(); }
Example #20
Source File: WXImage.java From weex-uikit with MIT License | 4 votes |
private void setRemoteSrc(Uri rewrited) { WXImageStrategy imageStrategy = new WXImageStrategy(); imageStrategy.isClipping = true; WXImageSharpen imageSharpen = getDomObject().getAttrs().getImageSharpen(); imageStrategy.isSharpen = imageSharpen == WXImageSharpen.SHARPEN; int radius = getDomObject().getStyles().getBlur(); radius = Math.max(0, radius); imageStrategy.blurRadius = Math.min(10, radius); imageStrategy.setImageListener(new WXImageStrategy.ImageListener() { @Override public void onImageFinish(String url, ImageView imageView, boolean result, Map extra) { if (getDomObject() != null && getDomObject().getEvents().contains(Constants.Event.ONLOAD)) { Map<String, Object> params = new HashMap<String, Object>(); Map<String, Object> size = new HashMap<>(2); if (imageView != null && imageView.getDrawable() != null && imageView.getDrawable() instanceof ImageDrawable) { size.put("naturalWidth", ((ImageDrawable) imageView.getDrawable()).getBitmapWidth()); size.put("naturalHeight", ((ImageDrawable) imageView.getDrawable()).getBitmapHeight()); } else { size.put("naturalWidth", 0); size.put("naturalHeight", 0); } if (getDomObject() != null && containsEvent(Constants.Event.ONLOAD)) { params.put("success", result); params.put("size", size); fireEvent(Constants.Event.ONLOAD, params); } } } }); WXSDKInstance instance = getInstance(); if (getDomObject().getAttrs().containsKey(Constants.Name.PLACE_HOLDER)) { String attr = (String) getDomObject().getAttrs().get(Constants.Name.PLACE_HOLDER); if (TextUtils.isEmpty(attr)) { imageStrategy.placeHolder = instance.rewriteUri(Uri.parse(attr), URIAdapter.IMAGE).toString(); } } IWXImgLoaderAdapter imgLoaderAdapter = getInstance().getImgLoaderAdapter(); if (imgLoaderAdapter != null) { imgLoaderAdapter.setImage(rewrited.toString(), getHostView(), getDomObject().getAttrs().getImageQuality(), imageStrategy); } }
Example #21
Source File: InitConfig.java From weex-uikit with MIT License | 4 votes |
public Builder setImgAdapter(IWXImgLoaderAdapter imgAdapter) { this.imgAdapter = imgAdapter; return this; }
Example #22
Source File: InitConfig.java From weex-uikit with MIT License | 4 votes |
public IWXImgLoaderAdapter getImgAdapter() { return imgAdapter; }
Example #23
Source File: WXSDKManager.java From weex-uikit with MIT License | 4 votes |
public IWXImgLoaderAdapter getIWXImgLoaderAdapter() { return mIWXImgLoaderAdapter; }
Example #24
Source File: WXSDKEngine.java From ucar-weex-core with Apache License 2.0 | 4 votes |
public static IWXImgLoaderAdapter getIWXImgLoaderAdapter() { return WXSDKManager.getInstance().getIWXImgLoaderAdapter(); }