Since: API Level 3.0
package

com.droidux.core.components

Contains classes to manage the initialization and registration of the component library.

Before the library can be used, it has to be initialized and also needs to register an Application to provide a context for this library. This is normally done in the onCreate() method of the application context.

For example:

public class DroidUxApp extends Application {

	@Override
	public void onCreate() {
		super.onCreate();

		// initialize the DroidUX v3 library
		DroidUxLibrary.register("enter-your-api-key-here", this);
	}
}

Classes

DroidUxLibrary A class to manage the registration of the component library.