In my application I want use this Library for show ArrayList
items.
My ArrayList from server:
"genres": [
"Action",
" Comedy",
" Family"
]
I write below code for show Items:
private String[] mostlyMatchedKeywordsStrings;
private List<String> cloudChipList = new ArrayList<>();
mostlyMatchedKeywordsStrings = serialResponse.getData().getGenres();
for (String str : mostlyMatchedKeywordsStrings) {
cloudChipList.add(str);
if (cloudChipList.size() > 0) {
infoSerialFrag_GenreChips.addChip(str);
}
}
show me such as this:
Ganre : Action Comedy Family
But I want show me such as this :
Ganre : Action , Comedy , Family