|
@@ -99,9 +99,15 @@ public class NavigationActivity extends AppCompatActivity implements DefaultHard
|
99
|
99
|
|
100
|
100
|
@Override
|
101
|
101
|
public boolean onKeyUp(int keyCode, KeyEvent event) {
|
|
102
|
+
|
102
|
103
|
return JsDevReloadHandler.onKeyUp(getCurrentFocus(), keyCode) || super.onKeyUp(keyCode, event);
|
103
|
104
|
}
|
104
|
105
|
|
|
106
|
+ @Override
|
|
107
|
+ public boolean onKeyMultiple(int keyCode, int repeatCount, KeyEvent event) {
|
|
108
|
+ return super.onKeyMultiple(keyCode, repeatCount, event);
|
|
109
|
+ }
|
|
110
|
+
|
105
|
111
|
private NavigationReactInstance getNavigationReactInstance() {
|
106
|
112
|
return NavigationApplication.instance.getNavigationReactInstance();
|
107
|
113
|
}
|