weex 如何跳转到android的activity ?

浏览:49日期:2022-11-09

问题描述

目前已经学会官方文档中的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,有没有相关的示例代码 可以参考一下?

问题解答

回答1:

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)); }}

借用你的代码

相关文章: