weex 如何跳转到android的activity ?
阿神
阿神 2017-04-18 09:07:49
0
1
413

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

阿神
阿神

闭关修行中......

Antworte allen(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));
  }
}

借用你的代码

Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage