onCreate

abstract fun onCreate(savedInstanceState: Bundle)(source)

Should be called from Activity.onCreate().

This should be called before super.onCreate() as so:

protected void onCreate(Bundle savedInstanceState) {
    getDelegate().onCreate(savedInstanceState);
    super.onCreate(savedInstanceState);
    // ...
}