React Native android 如果调不出开发菜单栏如何处理
使用魅族3调试,咋都加载不出“开发者菜单栏”,通过查看fackboo react的API 具体位置在react-native jar 包中的DevSupportManagerImpl类中showDevOptionsDialog(),对应的我们能扣出相应的方法重写一个开发者菜单
如何实例化 DevSupportManager接口,通过ReactInstanceManager:
mReactInstanceManager = ReactInstanceManager.builder() .setApplication(getApplication()) .setBundleAssetName("index.android.bundle") .setJSMainModuleName("index.android") .addPackage(new MainReactPackage()) .setUseDeveloperSupport(BuildConfig.DEBUG) .setInitialLifecycleState(LifecycleState.RESUMED) //.setUseOldBridge(true) // uncomment this line if your app crashes .build(); mDevSupportManager=mReactInstanceManager.getDevSupportManager();
1. 与RN服务交互ReloadJS
mDevSupportManager.handleReloadJS();
2.设置RN服务器的host以及端口号 用DevSettingsActivity ,直接启动就好,在manifest.xml记得引用Acitivty
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity"/>
下面是代码中
Intent intent = new Intent(); intent.setClass(MainActivity.this, DevSettingsActivity.class); startActivity(intent);
常用的就是这两个,其他的也可以对着源码自己写的
基本上不能热更新,第一先检查网络问题,手机在浏览器中输入 http://host:port能访问到RN Server
再看Activity中设置的初始化打包路径设置对了没...react-native jar能不能正常引用到,这个可以在as中调试!
相关推荐
sgafdsg 2020-06-04
游走的豚鼠君 2020-11-10
81417707 2020-10-30
ctg 2020-10-14
小飞侠V 2020-09-25
PncLogon 2020-09-24
jipengx 2020-09-10
颤抖吧腿子 2020-09-04
wwzaqw 2020-09-04
maple00 2020-09-02
青蓝 2020-08-26
罗忠浩 2020-08-16
liduote 2020-08-13
不知道该写啥QAQ 2020-08-02
pengruiyu 2020-08-01
wmd看海 2020-07-27
孝平 2020-07-18
Eduenth 2020-07-05