abstract class OptionsCapableActivity : AppCompatActivity
Activity that's capable of getting EXTRA_OPTIONS input.
OptionsCapableActivity()
Activity that's capable of getting EXTRA_OPTIONS input. |
abstract fun onInitializePluginOptions(options: PluginOptions = pluginOptions()): Unit
Populate args to your user interface. |
|
open fun onPostCreate(savedInstanceState: Bundle?): Unit |
|
fun pluginOptions(intent: Intent = this.intent): PluginOptions |
abstract class ConfigurationActivity : OptionsCapableActivity
Base class for configuration activity. A configuration activity is started when user wishes to configure the
selected plugin. To create a configuration activity, extend this class, implement abstract methods, invoke
|
|
abstract class HelpActivity : OptionsCapableActivity
Base class for a help activity. A help activity is started when user taps help when configuring options for your plugin. To create a help activity, just extend this class, and add it to your manifest like this: |