Available C++ functions to manage Windows/Views
#1
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:

java:
onResume() {
// pseudo code
    if (CurrentWindowId == Video.InfoWindow) {
       Video.InfoWindow.close();
    }
}
Reply

Logout Mark Read Team Forum Stats Members Help
Available C++ functions to manage Windows/Views0