Notification from Android, the activity is created

Do your normal static set up here.

If available, save_state contains the activity's previous state as registered by on_save_instance_state.

Followed by on_start.

Property definitions

android $ Activity :: on_create
	# Notification from Android, the activity is created
	#
	# Do your normal static set up here.
	#
	# If available, `save_state` contains the activity's previous state
	# as registered by `on_save_instance_state`.
	#
	# Followed by `on_start`.
	fun on_create(save_state: NativeBundle)
	do
		app.on_create
		app.on_restore_state
	end
lib/android/nit_activity.nit:227,2--239,4