Эта строка
String[] data = {String.valueOf( IList )};
String.valueOf( IList )
вернет строку, значение которой [CB, CC]
. Вот почему вы видите его в интерфейсе NumberPicker.
Решение: Преобразование строкового массива в строковый массив.
IList.add(snapshot.getKey());
// Convert string arraylist to string array.
String[] data = new String[list.size()];
data = list.toArray(data);
// Set minValue is 1 instead of data.length
numberPicker.setMinValue(1);
numberPicker.setMaxValue(data.length);
numberPicker.setDisplayedValues(data);
numberPicker.setValue(data.length);
numberPicker.setWrapSelectorWheel(false);
Обновление: Я думаю, вот что вы имеете в виду
reference.addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {
IList.clear();
for (DataSnapshot snapshot : dataSnapshot.getChildren()) {
IList.add(snapshot.getKey());
}
// Convert string arraylist to string array.
String[] data = new String[IList.size()];
data = IList.toArray(data);
numberPicker.setMinValue(0);
numberPicker.setMaxValue(data.length - 1);
numberPicker.setDisplayedValues(data);
numberPicker.setValue(0);
numberPicker.setWrapSelectorWheel(false);
}
}