using this code :
from jnius import autoclass as c
Context = c('org.renpy.android.PythonActivity')
activity = Context.mActivity
wm = activity.getSystemService(Context.WINDOW_SERVICE)
print wm
print dir(wm)
I only got 15 methods of window service, while dir(wm.getDefault()) gives even less methods.
How can I access all (60+) of its methods listed in the .aidl file ?
https://android.googlesource.com/platform/frameworks/base/+/jb-release/core/java/android/view/IWindowManager.aidl
Did I use wrong context ? Is it matter ?
Thanks :D