com.taobao.weex.common.WXException Java Examples

The following examples show how to use com.taobao.weex.common.WXException. 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: App.java    From CrazyDaily with Apache License 2.0 6 votes vote down vote up
/**
 * 初始化Weex
 */
private void initWeex() {
    InitConfig config = new InitConfig.Builder()
            .setImgAdapter(new WXImageAdapter())
            .setHttpAdapter(new WXHttpAdapter(mAppComponent.provideOkhttpClient()))
            .build();
    WXSDKEngine.initialize(this, config);
    try {
        WXSDKEngine.registerComponent("tabPager", WXTabPagerComponent.class);
        WXSDKEngine.registerComponent(WXBasicComponentType.WEB, WXWebComponent.class);
        WXSDKEngine.registerModule("crazyDaily", CrazyDailyModule.class);
        WXSDKEngine.registerModule("webview", WXWebViewModule.class, true);
        WXSDKEngine.registerModule("log", LogModule.class);
    } catch (WXException e) {
        LoggerUtil.d(e.getMessage());
    }
}
 
Example #2
Source File: WXApplication.java    From weex with Apache License 2.0 6 votes vote down vote up
@Override
public void onCreate() {
  super.onCreate();
  initDebugEnvironment(false, "DEBUG_SERVER_HOST");
  WXSDKEngine.addCustomOptions("appName", "WXSample");
  WXSDKEngine.addCustomOptions("appGroup", "WXApp");
  WXSDKEngine.initialize(this,
                         new InitConfig.Builder()
                             .setImgAdapter(new ImageAdapter())
                             .setDebugAdapter(new PlayDebugAdapter())
                             .build()
                        );

  try {
    Fresco.initialize(this);
    WXSDKEngine.registerComponent("richtext", RichText.class);
    WXSDKEngine.registerModule("render", RenderModule.class);
    WXSDKEngine.registerModule("event", WXEventModule.class);

    WXSDKEngine.registerModule("myModule", MyModule.class);

  } catch (WXException e) {
    e.printStackTrace();
  }

}
 
Example #3
Source File: WXComponentRegistry.java    From weex with Apache License 2.0 6 votes vote down vote up
private static boolean registerNativeComponent(String type, Class<? extends WXComponent> clazz) throws WXException {
  if (type == null) {
    if (WXEnvironment.isApkDebugable()) {
      throw new WXException("Component name required." );
    } else {
      WXLogUtils.e("Component name required." + type);
      return false;
    }
  }
  //same component class for different name
  ComponentHolder holder;
  if(sClassTypeMap.get(clazz.getName()) == null){
    holder = new ComponentHolder(clazz);
    sClassTypeMap.put(clazz.getName(),type);
  }else{
    //use the same holder
    holder = sTypeComponentMap.get(sClassTypeMap.get(clazz.getName()));
  }

  sTypeComponentMap.put(type, holder);
  return true;
}
 
Example #4
Source File: WXDomRegistry.java    From weex with Apache License 2.0 6 votes vote down vote up
public static boolean registerDomObject(String type, Class<? extends WXDomObject> clazz) throws WXException {
  if (clazz == null || TextUtils.isEmpty(type)) {
    return false;
  }

  if (sDom.containsKey(type)) {
    if (WXEnvironment.isApkDebugable()) {
      throw new WXException("WXDomRegistry had duplicate Dom:" + type);
    } else {
      WXLogUtils.e("WXDomRegistry had duplicate Dom: " + type);
      return false;
    }
  }
  sDom.put(type, clazz);
  return true;
}
 
Example #5
Source File: WXDomRegistry.java    From weex-uikit with MIT License 6 votes vote down vote up
public static boolean registerDomObject(String type, Class<? extends WXDomObject> clazz) throws WXException {
  if (clazz == null || TextUtils.isEmpty(type)) {
    return false;
  }

  if (sDom.containsKey(type)) {
    if (WXEnvironment.isApkDebugable()) {
      throw new WXException("WXDomRegistry had duplicate Dom:" + type);
    } else {
      WXLogUtils.e("WXDomRegistry had duplicate Dom: " + type);
      return false;
    }
  }
  sDom.put(type, clazz);
  return true;
}
 
Example #6
Source File: WXApplication.java    From yanxuan-weex-demo with MIT License 6 votes vote down vote up
@Override
public void onCreate() {
  super.onCreate();
  WXSDKEngine.addCustomOptions("appName", "WXSample");
  WXSDKEngine.addCustomOptions("appGroup", "WXApp");
  WXSDKEngine.initialize(this,
      new InitConfig.Builder().setImgAdapter(new ImageAdapter()).build()
  );
  try {
    WXSDKEngine.registerModule("event", WXEventModule.class);
  } catch (WXException e) {
    e.printStackTrace();
  }
  AppConfig.init(this);
  WeexPluginContainer.loadAll(this);
}
 
Example #7
Source File: SliceTestActivity.java    From incubator-weex-playground with Apache License 2.0 6 votes vote down vote up
@Override
protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  try {
    WXSDKEngine.registerModule("searchEvent", SearchModule.class);
  } catch (WXException e) {
    e.printStackTrace();
  }
  setContentView(R.layout.activity_slice_test);
  mRecyclerView = (RecyclerView) findViewById(R.id.recycler_view);
  mReportTextView = (TextView) findViewById(R.id.report_text);

  mRecyclerView.setLayoutManager(new LinearLayoutManager(this));
  mRecyclerView.addItemDecoration(new DividerItemDecoration(this, DividerItemDecoration.VERTICAL));
  mAdapter = new WXInstanceAdapter();
  mRecyclerView.setAdapter(mAdapter);
}
 
Example #8
Source File: UWXInit.java    From ucar-weex-core with Apache License 2.0 6 votes vote down vote up
public static void init(Application context) {
        UWXSDKManager.initialize(context);
//        WXSDKEngine.addCustomOptions("scheme", "portal");
//        WXSDKEngine.addCustomOptions(WXConfig.appGroup, "portal");
//        WXSDKEngine.addCustomOptions(WXConfig.appName, "portal");
        WXSDKEngine.initialize(context,
                new InitConfig.Builder()
                        .setImgAdapter(new FrescoImageAdapter())
                        .setJSExceptionAdapter(new JSExceptionAdapter())
                        .setDebugAdapter(new DebugAdapter())
                        .build()
        );
        try {
            WXSDKEngine.registerModule("UNavigator", UWXNavigatorModule.class);
            WXSDKEngine.registerModule("UScheme", UWXSchemeModule.class);
            WXSDKEngine.registerModule("UGlobalEvent", UWXGlobalEventModule.class);
            WXSDKEngine.registerModule("navigator", UWXNavigatorModule2.class);
        } catch (WXException e) {
            e.printStackTrace();
        }
        Fresco.initialize(context);
    }
 
Example #9
Source File: WXDomRegistry.java    From ucar-weex-core with Apache License 2.0 6 votes vote down vote up
public static boolean registerDomObject(String type, Class<? extends WXDomObject> clazz) throws WXException {
  if (clazz == null || TextUtils.isEmpty(type)) {
    return false;
  }

  if (sDom.containsKey(type)) {
    if (WXEnvironment.isApkDebugable()) {
      throw new WXException("WXDomRegistry had duplicate Dom:" + type);
    } else {
      WXLogUtils.e("WXDomRegistry had duplicate Dom: " + type);
      return false;
    }
  }
  sDom.put(type, clazz);
  return true;
}
 
Example #10
Source File: WXComponentRegistry.java    From weex-uikit with MIT License 5 votes vote down vote up
private static boolean registerNativeComponent(String type, IFComponentHolder holder) throws WXException {
  try {
    holder.loadIfNonLazy();
    sTypeComponentMap.put(type, holder);
  }catch (ArrayStoreException e){
    e.printStackTrace();
    //ignore: ArrayStoreException: java.lang.String cannot be stored in an array of type java.util.HashMap$HashMapEntry[]
  }
  return true;
}
 
Example #11
Source File: WXComponentRegistry.java    From weex with Apache License 2.0 5 votes vote down vote up
public static boolean registerComponent(Map<String, String> componentInfo, Class<? extends WXComponent> clazz) throws WXException {
  if (componentInfo == null || clazz == null) {
    return false;
  }

  String type = componentInfo.get("type");
  if(type == null){
    return false;
  }else{
    registerInternal(type,clazz,componentInfo);
    return true;
  }
}
 
Example #12
Source File: WXComponentRegistry.java    From weex with Apache License 2.0 5 votes vote down vote up
private static void registerInternal(final String type,final Class<? extends WXComponent> clazz, final Map<String, String> componentInfo){
  WXBridgeManager.getInstance().getJSHandler().post(new Runnable() {
    @Override
    public void run() {
      try {
        registerNativeComponent(type, clazz);
        registerJSComponent(componentInfo);
      } catch (WXException e) {
        e.printStackTrace();
      }

    }
  });
}
 
Example #13
Source File: WXComponentRegistry.java    From weex with Apache License 2.0 5 votes vote down vote up
public static boolean registerComponent(String type, Class<? extends WXComponent> clazz, boolean appendTree) throws WXException {
  if (clazz == null || TextUtils.isEmpty(type)) {
    return false;
  }

  Map<String, String> componentInfo = new HashMap<>();
  componentInfo.put("type", type);
  if (appendTree) {
    componentInfo.put("append", "tree");
  }
  registerInternal(type,clazz,componentInfo);
  return true;
}
 
Example #14
Source File: WXApplication.java    From ucar-weex-core with Apache License 2.0 5 votes vote down vote up
@Override
public void onCreate() {
    super.onCreate();
    instance = this;
    try {
        WXSDKEngine.registerModule("nativeRouter", SchemaActivity.class);
    } catch (WXException e) {
        e.printStackTrace();
    }
    UWXSDKManager.getInstance().setNavigatorAdapter(new NavigatorAdapter());
    UWXInit.init(this);
    //设置主题 过场动画 statusBar natBar 默认背景 是否有返回 ..
    UWXThemeManager.getInstance().setPageTheme(new UWXTheme(new UWXTheme.NavBar("#ffffff", "#000000"), com.ucar.weex.R.style.wx_theme_app));
    /**
     * assets/weex/ucar-weex_3_20170828123442
     */
    UWXResManager.getInstance().setServerUrl("http://fcardownloadtest.10101111.com/fcarapp/upgrade/getUpgradeInfo");
    UWXResManager.getInstance().asyAddWXResFromAssert(this, FileUtils.getWXPackageFileName(this, "weex"), new UWXResManager.addWXResFromAssertListener() {
        @Override
        public void resFromAssertListener(boolean success, String des, WXPackageInfo wxPackageInfo) {
            UWXResManager.getInstance().checkUpdate(new UWXResManager.CheckUpdateCallback() {
                @Override
                public void callback(int code, String msg, WXPackageInfo info) {
                    Toast.makeText(WXApplication.this, msg, Toast.LENGTH_LONG).show();
                    UWLog.d("WXApp", msg);
                    //重启 提示
                }
            });
        }
    });


}
 
Example #15
Source File: WXSDKEngine.java    From weex-uikit with MIT License 5 votes vote down vote up
public static boolean registerComponent(Map<String, Object> componentInfo, Class<? extends WXComponent> clazz) throws WXException {
  if(componentInfo == null){
    return false;
  }
  String type = (String)componentInfo.get("type");
  if(TextUtils.isEmpty(type)){
    return false;
  }
  return WXComponentRegistry.registerComponent(type,new SimpleComponentHolder(clazz), componentInfo);
}
 
Example #16
Source File: WXSDKEngine.java    From weex-uikit with MIT License 5 votes vote down vote up
public static boolean registerComponent(IFComponentHolder holder, boolean appendTree, String ... names) throws WXException {
  boolean result =  true;
  for(String name:names) {
    Map<String, Object> componentInfo = new HashMap<>();
    if (appendTree) {
      componentInfo.put("append", "tree");
    }
    result  = result && WXComponentRegistry.registerComponent(name, holder, componentInfo);
  }
  return result;
}
 
Example #17
Source File: WXComponentRegistry.java    From weex-uikit with MIT License 5 votes vote down vote up
public static void reload(){
  WXBridgeManager.getInstance().post(new Runnable() {
    @Override
    public void run() {
      try {
        for(Map<String,Object> com:sComponentInfos){
          registerJSComponent(com);
        }
      } catch (WXException e) {
        WXLogUtils.e("", e);
      }
    }
  });
}
 
Example #18
Source File: WXComponentRegistry.java    From weex-uikit with MIT License 5 votes vote down vote up
public static boolean registerComponent(final String type, final IFComponentHolder holder, final Map<String, Object> componentInfo) throws WXException {
  if (holder == null || TextUtils.isEmpty(type)) {
    return false;
  }

  //execute task in js thread to make sure register order is same as the order invoke register method.
  WXBridgeManager.getInstance()
      .post(new Runnable() {
    @Override
    public void run() {
      try {
        Map<String, Object> registerInfo = componentInfo;
        if (registerInfo == null){
          registerInfo = new HashMap<>();
        }

        registerInfo.put("type",type);
        registerInfo.put("methods",holder.getMethods());
        registerNativeComponent(type, holder);
        registerJSComponent(registerInfo);
        sComponentInfos.add(registerInfo);
      } catch (WXException e) {
        WXLogUtils.e("register component error:", e);
      }

    }
  });
  return true;
}
 
Example #19
Source File: WXModuleManager.java    From weex-uikit with MIT License 5 votes vote down vote up
static boolean registerNativeModule(String moduleName, ModuleFactory factory) throws WXException {
  if (factory == null) {
    return false;
  }

  try {
    sModuleFactoryMap.put(moduleName, factory);
  }catch (ArrayStoreException e){
    e.printStackTrace();
    //ignore:
    //may throw this exception:
    //java.lang.String cannot be stored in an array of type java.util.HashMap$HashMapEntry[]
  }
  return true;
}
 
Example #20
Source File: WXModuleManager.java    From ucar-weex-core with Apache License 2.0 5 votes vote down vote up
static boolean registerNativeModule(String moduleName, ModuleFactory factory) throws WXException {
  if (factory == null) {
    return false;
  }

  try {
    sModuleFactoryMap.put(moduleName, factory);
  }catch (ArrayStoreException e){
    e.printStackTrace();
    //ignore:
    //may throw this exception:
    //java.lang.String cannot be stored in an array of type java.util.HashMap$HashMapEntry[]
  }
  return true;
}
 
Example #21
Source File: WXSDKEngine.java    From ucar-weex-core with Apache License 2.0 5 votes vote down vote up
public static boolean registerComponent(Map<String, Object> componentInfo, Class<? extends WXComponent> clazz) throws WXException {
  if(componentInfo == null){
    return false;
  }
  String type = (String)componentInfo.get("type");
  if(TextUtils.isEmpty(type)){
    return false;
  }
  return WXComponentRegistry.registerComponent(type,new SimpleComponentHolder(clazz), componentInfo);
}
 
Example #22
Source File: WXComponentRegistry.java    From ucar-weex-core with Apache License 2.0 5 votes vote down vote up
public static boolean registerComponent(final String type, final IFComponentHolder holder, final Map<String, Object> componentInfo) throws WXException {
  if (holder == null || TextUtils.isEmpty(type)) {
    return false;
  }

  //execute task in js thread to make sure register order is same as the order invoke register method.
  WXBridgeManager.getInstance()
      .post(new Runnable() {
    @Override
    public void run() {
      try {
        Map<String, Object> registerInfo = componentInfo;
        if (registerInfo == null){
          registerInfo = new HashMap<>();
        }

        registerInfo.put("type",type);
        registerInfo.put("methods",holder.getMethods());
        registerNativeComponent(type, holder);
        registerJSComponent(registerInfo);
        sComponentInfos.add(registerInfo);
      } catch (WXException e) {
        WXLogUtils.e("register component error:", e);
      }

    }
  });
  return true;
}
 
Example #23
Source File: WXComponentRegistry.java    From ucar-weex-core with Apache License 2.0 5 votes vote down vote up
private static boolean registerNativeComponent(String type, IFComponentHolder holder) throws WXException {
  try {
    holder.loadIfNonLazy();
    sTypeComponentMap.put(type, holder);
  }catch (ArrayStoreException e){
    e.printStackTrace();
    //ignore: ArrayStoreException: java.lang.String cannot be stored in an array of type java.util.HashMap$HashMapEntry[]
  }
  return true;
}
 
Example #24
Source File: WXComponentRegistry.java    From ucar-weex-core with Apache License 2.0 5 votes vote down vote up
public static void reload(){
  WXBridgeManager.getInstance().post(new Runnable() {
    @Override
    public void run() {
      try {
        for(Map<String,Object> com:sComponentInfos){
          registerJSComponent(com);
        }
      } catch (WXException e) {
        WXLogUtils.e("", e);
      }
    }
  });
}
 
Example #25
Source File: WXSDKEngine.java    From ucar-weex-core with Apache License 2.0 5 votes vote down vote up
public static boolean registerComponent(IFComponentHolder holder, boolean appendTree, String ... names) throws WXException {
  boolean result =  true;
  for(String name:names) {
    Map<String, Object> componentInfo = new HashMap<>();
    if (appendTree) {
      componentInfo.put("append", "tree");
    }
    result  = result && WXComponentRegistry.registerComponent(name, holder, componentInfo);
  }
  return result;
}
 
Example #26
Source File: WXSDKEngine.java    From ucar-weex-core with Apache License 2.0 4 votes vote down vote up
public static boolean registerDomObject(String type, Class<? extends WXDomObject> clazz) throws WXException {
  return WXDomRegistry.registerDomObject(type, clazz);
}
 
Example #27
Source File: WXComponentRegistry.java    From weex with Apache License 2.0 4 votes vote down vote up
private static boolean registerJSComponent(Map<String, String> componentInfo) throws WXException {
  ArrayList<Map<String, String>> coms = new ArrayList<>();
  coms.add(componentInfo);
  WXSDKManager.getInstance().registerComponents(coms);
  return true;
}
 
Example #28
Source File: WXComponentRegistry.java    From ucar-weex-core with Apache License 2.0 4 votes vote down vote up
private static boolean registerJSComponent(Map<String, Object> componentInfo) throws WXException {
  ArrayList<Map<String, Object>> coms = new ArrayList<>();
  coms.add(componentInfo);
  WXSDKManager.getInstance().registerComponents(coms);
  return true;
}
 
Example #29
Source File: WXSDKEngine.java    From ucar-weex-core with Apache License 2.0 4 votes vote down vote up
public static boolean registerComponent(String type, IExternalComponentGetter componentGetter, boolean appendTree) throws WXException {
  return registerComponent(new ExternalLoaderComponentHolder(type,componentGetter), appendTree,type);
}
 
Example #30
Source File: WXApplication.java    From analyzer-of-android-for-Apache-Weex with Apache License 2.0 4 votes vote down vote up
@Override
  public void onCreate() {
    super.onCreate();

    /**
     * Set up for fresco usage.
     * Set<RequestListener> requestListeners = new HashSet<>();
     * requestListeners.add(new RequestLoggingListener());
     * ImagePipelineConfig config = ImagePipelineConfig.newBuilder(this)
     *     .setRequestListeners(requestListeners)
     *     .build();
     * Fresco.initialize(this,config);
     **/
//    initDebugEnvironment(false, "DEBUG_SERVER_HOST");
    WXSDKEngine.addCustomOptions("appName", "WXSample");
    WXSDKEngine.addCustomOptions("appGroup", "WXApp");
    WXSDKEngine.initialize(this,
                           new InitConfig.Builder()
                               //.setImgAdapter(new FrescoImageAdapter())// use fresco adapter
                               .setImgAdapter(new ImageAdapter())
                               .setDebugAdapter(new PlayDebugAdapter())
                               .build()
                          );

    try {
      Fresco.initialize(this);
      WXSDKEngine.registerComponent("richtext", RichText.class);
      WXSDKEngine.registerModule("render", RenderModule.class);
      WXSDKEngine.registerModule("event", WXEventModule.class);

      WXSDKEngine.registerModule("myModule", MyModule.class);
      WXSDKEngine.registerModule("geolocation", GeolocationModule.class);
      /**
       * override default image tag
       * WXSDKEngine.registerComponent("image", FrescoImageComponent.class);
       */


    } catch (WXException e) {
      e.printStackTrace();
    }

  }