目前已经学会官方文档中的Module 扩展
public class MyModule extends WXModule {
@WXModuleAnno(runOnUIThread = true)
public void printLog(String msg) {
Toast.makeText(mWXSDKInstance.getContext(),msg,Toast.LENGTH_SHORT).show();
}
}
本人安卓小白,只知道一些基本知识。现在不知道 weex如何调用安卓中(已提前写好的)activity,有没有相关的示例代码 可以参考一下?
PHP中文网2017-04-18 09:09:49
public class MyModule extends WXModule {
@WXModuleAnno(runOnUIThread = true)
public void printLog(String msg) {
// Toast.makeText(mWXSDKInstance.getContext(),msg,Toast.LENGTH_SHORT).show();
startActivity(new Intent(mWXSDKInstance.getContext(), MyActivity.class));
}
}
Borrow your code