Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions src/android/ThemeableBrowser.java
Original file line number Diff line number Diff line change
Expand Up @@ -1382,6 +1382,22 @@ public View getView (int position, View convertView, ViewGroup parent) {
}
}

/**
* Called when the system is about to start resuming a previous activity.
*/
@Override
public void onPause(boolean multitasking) {
if(inAppWebView != null) inAppWebView.onPause();
}

/**
* Called when the activity will start interacting with the user.
*/
@Override
public void onResume(boolean multitasking) {
if(inAppWebView != null) inAppWebView.onResume();
}


/**
* A class to hold parsed option properties.
Expand Down