abstract class HelpCallback : HelpActivity
HelpCallback is an HelpActivity but you just need to produce a CharSequence help message instead of having to provide UI. To create a help callback, just extend this class, implement abstract methods, and add it to your manifest following the same procedure as adding a HelpActivity.
HelpCallback()
HelpCallback is an HelpActivity but you just need to produce a CharSequence help message instead of having to provide UI. To create a help callback, just extend this class, implement abstract methods, and add it to your manifest following the same procedure as adding a HelpActivity. |
open fun onInitializePluginOptions(options: PluginOptions): Unit
Populate args to your user interface. |
|
abstract fun produceHelpMessage(options: PluginOptions): CharSequence |