使用如下:
public class BaseApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
**
* 初始化
*
* @param context application的对象
* @param flag 是否开启weex调试
*/
ShuWeiWeexSdk.init(this,true);
}
}
//跳转到weex--activity
WeexPagerActivity.start(this,"home/home.js");
//添加weex--fragment
WeexPagerFragment.newInstance("home/home.js");
public class ProgressHud extends BaseWXModule {
//运行在主线程
@JSMethod(uiThread = true)
public void show(JSCallback jsCallback) {
//检测jscallback是否为null,为null直接回复fail
if (!checkContext(jsCallback)) {
return;
}
if (mLoadingDialog == null) {
mLoadingDialog = new LoadingDialog(mWXSDKInstance.getContext(), 2);
mLoadingDialog.setDissmissByOutside(false);
mLoadingDialog.setDissmissByBack(true);
}
mLoadingDialog.show();
//传递成功的消息,只包含result一个字段
jsCallBack(jsCallback, MSG_SUCCESS);
//如果需要传递多个字段建议如下:
// jsCallBack(jsCallback,new TreeMap<String, String>());
}
}
更多建议参考weex文档:android使用weex扩展组件
public class RichText extends WXComponent<TextView> {
public RichText(WXSDKInstance instance, WXDomObject dom, WXVContainer parent) {
super(instance, dom, parent);
}
@Override
protected TextView initComponentHostView(@NonNull Context context) {
TextView textView = new TextView(context);
textView.setTextSize(20);
textView.setTextColor(Color.BLACK);
return textView;
}
@WXComponentProp(name = "tel")
public void setTel(String telNumber) {
getHostView().setText("tel: " + telNumber);
}
}
Module:
- _hud 加载动画
- _photoBrowser 图片浏览器
Component
- web 使用tencent x5 内核的webView