2019-04-22, 15:13
Is there a way I could see a list of which functions are available for the Android branch to use from Kodi? I noticed certain functions that begin with "__", such as "_doFrame" and assume these are native Kodi functions that are imported into the Android Java classes.
What I'm essentially looking to do is in Kodi's Main class add something like this:
What I'm essentially looking to do is in Kodi's Main class add something like this:
java:onResume() {
// pseudo code
if (CurrentWindowId == Video.InfoWindow) {
Video.InfoWindow.close();
}
}