com.taobao.weex.ui.animation.WXAnimationModule Java Examples
The following examples show how to use
com.taobao.weex.ui.animation.WXAnimationModule.
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 with Apache License 2.0 | 6 votes |
private static void register() { try { registerComponent(WXBasicComponentType.TEXT, WXText.class, false); registerComponent(WXBasicComponentType.IMG, WXImage.class, false); registerComponent(WXBasicComponentType.DIV, WXDiv.class, false); registerComponent(WXBasicComponentType.IMAGE, WXImage.class, false); registerComponent(WXBasicComponentType.CONTAINER, WXDiv.class, false); registerComponent(WXBasicComponentType.SCROLLER, WXScroller.class, false); registerComponent(WXBasicComponentType.SLIDER, WXSlider.class, true); registerComponent(WXListComponent.class, false,WXBasicComponentType.LIST,WXBasicComponentType.VLIST); registerComponent(HorizontalListComponent.class,false,WXBasicComponentType.HLIST); registerComponent(WXBasicComponentType.CELL, WXCell.class, true); registerComponent(WXBasicComponentType.INDICATOR, WXIndicator.class, true); registerComponent(WXBasicComponentType.VIDEO, WXVideo.class, false); registerComponent(WXBasicComponentType.INPUT, WXInput.class, false); registerComponent(WXBasicComponentType.SWITCH, WXSwitch.class, false); registerComponent(WXBasicComponentType.A, WXA.class, false); registerComponent(WXBasicComponentType.EMBED, WXEmbed.class, true); registerComponent(WXBasicComponentType.WEB, WXWeb.class); registerComponent(WXBasicComponentType.REFRESH, WXRefresh.class); registerComponent(WXBasicComponentType.LOADING, WXLoading.class); registerComponent(WXBasicComponentType.LOADING_INDICATOR, WXLoadingIndicator.class); registerModule("dom", WXDomModule.class, true); registerModule("modal", WXModalUIModule.class, false); registerModule("instanceWrap", WXInstanceWrap.class, true); registerModule("animation", WXAnimationModule.class, true); registerModule("webview", WXWebViewModule.class, true); registerModule("navigator", WXNavigatorModule.class); registerModule("stream", WXStreamModule.class); registerDomObject(WXBasicComponentType.TEXT, WXTextDomObject.class); registerDomObject(WXBasicComponentType.INPUT, WXTextDomObject.class); registerDomObject(WXBasicComponentType.SWITCH, WXSwitchDomObject.class); } catch (WXException e) { WXLogUtils.e("[WXSDKEngine] register:" + WXLogUtils.getStackTrace(e)); } }
Example #2
Source File: AnimationAction.java From ucar-weex-core with Apache License 2.0 | 5 votes |
private void startAnimation(@NonNull WXSDKInstance instance, @Nullable WXComponent component) { if (component != null) { if (mAnimationBean != null) { component.setNeedLayoutOnAnimation(mAnimationBean.needLayout); } if (component.getHostView() == null) { WXAnimationModule.AnimationHolder holder = new WXAnimationModule.AnimationHolder(mAnimationBean, callback); component.postAnimation(holder); } else { try { Animator animator = createAnimator(component.getHostView(), instance .getInstanceViewPortWidth()); if (animator != null) { Animator.AnimatorListener animatorCallback = createAnimatorListener(instance, callback); if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN_MR2 && component .isLayerTypeEnabled() ) { component.getHostView().setLayerType(View.LAYER_TYPE_HARDWARE, null); } Interpolator interpolator = createTimeInterpolator(); if (animatorCallback != null) { animator.addListener(animatorCallback); } if (interpolator != null) { animator.setInterpolator(interpolator); } animator.setDuration(mAnimationBean.duration); animator.start(); } } catch (RuntimeException e) { WXLogUtils.e(TAG, WXLogUtils.getStackTrace(e)); } } } }
Example #3
Source File: WXRenderStatement.java From weex with Apache License 2.0 | 5 votes |
/** * @see com.taobao.weex.dom.WXDomStatement#addDom(JSONObject, String, int) */ void addComponent(WXDomObject dom, String parentRef, int index) { WXVContainer parent = (WXVContainer) mRegistry.get(parentRef); WXComponent component = generateComponentTree(dom, parent); parent.addChild(component, index); WXAnimationModule.applyTransformStyle(dom.style, component); }
Example #4
Source File: WXRenderStatement.java From weex with Apache License 2.0 | 5 votes |
/** * @see com.taobao.weex.dom.WXDomStatement#addDom(JSONObject, String, int) */ void addComponent(WXComponent component, String parentRef, int index) { WXVContainer parent = (WXVContainer) mRegistry.get(parentRef); if (parent == null || component == null) { return; } component.createView(parent, index); component.applyLayoutAndEvent(component); component.bindData(component); parent.addChild(component, index); WXAnimationModule.applyTransformStyle(component.mDomObj.style, component); }
Example #5
Source File: WXRenderStatement.java From weex with Apache License 2.0 | 5 votes |
/** * @see com.taobao.weex.dom.WXDomStatement#updateStyle(String, JSONObject) */ void updateStyle(String ref, Map<String, Object> style) { WXComponent component = mRegistry.get(ref); if (component == null) { return; } component.updateProperties(style); WXAnimationModule.applyTransformStyle(style, component); }
Example #6
Source File: WXRenderStatement.java From weex with Apache License 2.0 | 5 votes |
void startAnimation(String ref, String animation, String callBack) { WXComponent component = mRegistry.get(ref); if (component == null || component.getRealView() == null) { return; } else { try { WXAnimationBean animationBean = WXAnimationModule.parseAnimation(animation, component.getRealView().getLayoutParams()); if (animationBean != null) { Animator animator = WXAnimationModule.createAnimator(animationBean, component.getRealView()); if (animator != null) { Animator.AnimatorListener animatorListener = WXAnimationModule.createAnimatorListener(mWXSDKInstance, callBack); Interpolator interpolator = WXAnimationModule.createTimeInterpolator(animationBean); if (animatorListener != null) { animator.addListener(animatorListener); } if (interpolator != null) { animator.setInterpolator(interpolator); } animator.setDuration(animationBean.duration); animator.start(); } } } catch (RuntimeException e) { WXLogUtils.e(WXLogUtils.getStackTrace(e)); } } }
Example #7
Source File: WXComponent.java From ucar-weex-core with Apache License 2.0 | 4 votes |
public void postAnimation(WXAnimationModule.AnimationHolder holder) { this.mAnimationHolder = holder; }
Example #8
Source File: WXRenderStatement.java From weex-uikit with MIT License | 4 votes |
void startAnimation(@NonNull String ref, @NonNull WXAnimationBean animationBean, @Nullable String callBack) { WXAnimationModule.startAnimation(mWXSDKInstance, mRegistry.get(ref), animationBean, callBack); }
Example #9
Source File: WXComponent.java From weex-uikit with MIT License | 4 votes |
public void postAnimation(WXAnimationModule.AnimationHolder holder) { this.mAnimationHolder = holder; }
Example #10
Source File: WXSDKEngine.java From weex-uikit with MIT License | 3 votes |
private static void register() { BatchOperationHelper batchHelper = new BatchOperationHelper(WXBridgeManager.getInstance()); try { registerComponent( new SimpleComponentHolder( WXText.class, new WXText.Creator() ), false, WXBasicComponentType.TEXT ); registerComponent( new SimpleComponentHolder( WXDiv.class, new WXDiv.Ceator() ), false, WXBasicComponentType.CONTAINER, WXBasicComponentType.DIV, WXBasicComponentType.HEADER, WXBasicComponentType.FOOTER ); registerComponent( new SimpleComponentHolder( WXImage.class, new WXImage.Ceator() ), false, WXBasicComponentType.IMAGE, WXBasicComponentType.IMG ); registerComponent( new SimpleComponentHolder( WXScroller.class, new WXScroller.Creator() ), false, WXBasicComponentType.SCROLLER ); registerComponent( new SimpleComponentHolder( WXSlider.class, new WXSlider.Creator() ), true, WXBasicComponentType.SLIDER ); registerComponent( new SimpleComponentHolder( WXSliderNeighbor.class, new WXSliderNeighbor.Creator() ), true, WXBasicComponentType.SLIDER_NEIGHBOR ); registerComponent(SimpleListComponent.class,false,"simplelist"); registerComponent(WXListComponent.class, false,WXBasicComponentType.LIST,WXBasicComponentType.VLIST); registerComponent(HorizontalListComponent.class,false,WXBasicComponentType.HLIST); registerComponent(WXBasicComponentType.CELL, WXCell.class, true); registerComponent(WXBasicComponentType.INDICATOR, WXIndicator.class, true); registerComponent(WXBasicComponentType.VIDEO, WXVideo.class, false); registerComponent(WXBasicComponentType.INPUT, WXInput.class, false); registerComponent(WXBasicComponentType.TEXTAREA, Textarea.class,false); registerComponent(WXBasicComponentType.SWITCH, WXSwitch.class, false); registerComponent(WXBasicComponentType.A, WXA.class, false); registerComponent(WXBasicComponentType.EMBED, WXEmbed.class, true); registerComponent(WXBasicComponentType.WEB, WXWeb.class); registerComponent(WXBasicComponentType.REFRESH, WXRefresh.class); registerComponent(WXBasicComponentType.LOADING, WXLoading.class); registerComponent(WXBasicComponentType.LOADING_INDICATOR, WXLoadingIndicator.class); registerComponent(WXBasicComponentType.HEADER, WXHeader.class); registerModule("modal", WXModalUIModule.class, false); registerModule("instanceWrap", WXInstanceWrap.class, true); registerModule("animation", WXAnimationModule.class, true); registerModule("webview", WXWebViewModule.class, true); registerModule("navigator", WXNavigatorModule.class); registerModule("stream", WXStreamModule.class); registerModule("timer", WXTimerModule.class, true); registerModule("storage", WXStorageModule.class, true); registerModule("clipboard", WXClipboardModule.class, true); registerModule("globalEvent",WXGlobalEventModule.class); registerModule("picker", WXPickersModule.class); registerModule("meta", WXMetaModule.class,true); registerModule("webSocket", WebSocketModule.class); registerDomObject(WXBasicComponentType.INDICATOR, WXIndicator.IndicatorDomNode.class); registerDomObject(WXBasicComponentType.TEXT, WXTextDomObject.class); registerDomObject(WXBasicComponentType.INPUT, BasicEditTextDomObject.class); registerDomObject(WXBasicComponentType.TEXTAREA, TextAreaEditTextDomObject.class); registerDomObject(WXBasicComponentType.SWITCH, WXSwitchDomObject.class); registerDomObject(WXBasicComponentType.LIST, WXListDomObject.class); registerDomObject(WXBasicComponentType.VLIST, WXListDomObject.class); registerDomObject(WXBasicComponentType.HLIST, WXListDomObject.class); registerDomObject(WXBasicComponentType.SCROLLER, WXScrollerDomObject.class); } catch (WXException e) { WXLogUtils.e("[WXSDKEngine] register:", e); } batchHelper.flush(); }