nice-spinner icon indicating copy to clipboard operation
nice-spinner copied to clipboard

Method does not override method from its super class

Open SaiSoeHarn opened this issue 6 years ago • 2 comments
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.

SaiSoeHarn avatar Mar 12 '19 09:03 SaiSoeHarn

me too

yefl2064 avatar Mar 15 '19 08:03 yefl2064

I think this should solve your problem: aa42151f2578598a3bde8cf94c88eeea62f5c30d.

arcadefire avatar May 24 '19 13:05 arcadefire