Adds extra data corresponding to float java type

Returns self allowing fluent programming Be aware of possible loss of precision as Nit Float corresponds to java double and the expected value is a java float Consider using add_extra_double

Property definitions

android $ Intent :: add_extra_float
	# Adds extra data corresponding to `float` java type
	# Returns `self` allowing fluent programming
	# *Be aware of possible loss of precision as Nit `Float` corresponds to*
	# *java `double` and the expected value is a java `float`*
	# Consider using add_extra_double
	fun add_extra_float(name: String, value: Float): Intent
	do
		sys.jni_env.push_local_frame(1)
		intent.add_extra_float(name.to_java_string, value)
		sys.jni_env.pop_local_frame
		return self
	end
lib/android/intent/intent_api10.nit:1159,2--1170,4