StringPicker
StringPicker copied to clipboard
StringPicker is a library to provides a custom view and dialog fragment to pick string value.
Maybe it will be better to move image files in Github repository?
Took solution from here http://stackoverflow.com/questions/22911819/numberpicker-throws-arrayindexoutofboundsexception-when-scrolling-through-the-va mClazz.getMethod("setMaxValue", int.class).invoke(mInstance, values.length - 1); mClazz.getMethod("setMaxValue", int.class).invoke(mInstance, 0); mClazz.getMethod("setMinValue", int.class).invoke(mInstance, 0); mClazz.getMethod("setDisplayedValues", String[].class).invoke(mInstance, new Object[]{values}); mClazz.getMethod("setMaxValue", int.class).invoke(mInstance, values.length - 1); // reference to solution from...
How can I supply the OnClickListener interface to the StringPickerDialog if it is implemented in a Fragment. There is no “setter” method, the StringPickerDialog class take this interface when it...