Adding Custom Code

The Extensibility Framework does not impose any restrictions on developers: you can mix custom code with extensibility features.

This example adds custom code to pop up a Toast once the extensibility engine is started. Insert the following line at the end of the onCreate method:
 Toast.makeText( this ,  "Extensibility is initialized" , Toast. LENGTH_LONG ).show();