nice-spinner
nice-spinner copied to clipboard
Method does not override method from its super class
trafficstars
I encounter the above issue when using
SimpleSpinnerTextFormatter textFormatter = new SimpleSpinnerTextFormatter() { @Override public Spannable format(Object item) { Person person = (Person) item; return new SpannableString(person.getName() + " " + person.getSurname()); } };
with implementation 'com.github.arcadefire:nice-spinner:1.3.8'. because of there is no Spannable format(Object item) in both SimpleSpinnerTextFormatter class and SpinnerTextFormatter interface.
me too
I think this should solve your problem: aa42151f2578598a3bde8cf94c88eeea62f5c30d.