You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ViewInflater.getProperty method does not work with base types like int, double or float.
It results that setProperty(aNumberPicker, "value", 4) works, but getProperty(aNumberPicker, "value") returns null due to the type of NumberPicker.getValue() that returns an int (which is not an object).
The text was updated successfully, but these errors were encountered:
The
ViewInflater.getProperty
method does not work with base types like int, double or float.It results that
setProperty(aNumberPicker, "value", 4)
works, butgetProperty(aNumberPicker, "value")
returns null due to the type of NumberPicker.getValue() that returns anint
(which is not an object).The text was updated successfully, but these errors were encountered: