You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the android activty, of the following events can occur, onFinished, onStart, onPause, onStop, onResume, onDestroy,
When there is any way to happen in the above several events, i can find the corresponding method in geckoview ?
For example:
activty.onFinished() -> geckoView.Finished.
activty.onPause || activty.onStop -> Geckoview. Pause // This is the most important one.Pause all geckoview processes when acitvity is paused. The webView can be implemented using the webView.pausetimers () method.
ctivty.onResume || ctivty.onStart-> geckoView.Resume // This is also important and can be implemented in webView using the webView.resumeTimers method.
The text was updated successfully, but these errors were encountered:
In the android activty, of the following events can occur, onFinished, onStart, onPause, onStop, onResume, onDestroy,
When there is any way to happen in the above several events, i can find the corresponding method in geckoview ?
For example:
activty.onFinished() -> geckoView.Finished.
activty.onPause || activty.onStop -> Geckoview. Pause // This is the most important one.Pause all geckoview processes when acitvity is paused. The webView can be implemented using the webView.pausetimers () method.
ctivty.onResume || ctivty.onStart-> geckoView.Resume // This is also important and can be implemented in webView using the webView.resumeTimers method.
The text was updated successfully, but these errors were encountered: