I am looking for someone to convert an existing library or inline code to use this library:
Full documentation here:
https://www.dropbox.com/sh/jpwg1gtyxigugng/AACZL-jQA3noh9z3-5NEkWLwa?dl=0
Full documentation here:
https://www.dropbox.com/sh/jpwg1gtyxigugng/AACZL-jQA3noh9z3-5NEkWLwa?dl=0
B4X:
Start
Obtain service SublcdManager sublcdManager=(SublcdManager)getSystemService("sublcd");
Register
registerEvent(Context context);
After successfully registered, the application can response to the broadcast event of the knob (channel switch) and buttons, also enable to draw contents (text/image) to the screen. Note: Make sure the carried parameter string in the broadcast of the knob which you are about to use equals to the package name of the current application.
Unregister when about to exit unregisterEvent(Context context);
After unregistered, the application has no permission to draw contents to the screen.
End