Notification from the Android framework, the window has been resized.

Please redraw with its new size.

Property definitions

android :: native_app_glue $ App :: window_resized
	# Notification from the Android framework, the window has been resized.
	#
	# Please redraw with its new size.
	fun window_resized do end
lib/android/native_app_glue.nit:220,2--223,26

gamnit :: gamnit_android $ App :: window_resized
	redef fun window_resized
	do
		if print_lifecycle_events then print "+ window_resized"
		super
	end
lib/gamnit/gamnit_android.nit:143,2--147,4