在我的應用程序中,我希望使用此Library來顯示ArrayList
項目。
我從服務器的ArrayList:如何在Array的每個元素的末尾添加逗號
"genres": [
"Action",
" Comedy",
" Family"
]
我下面寫的代碼顯示的項目:
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);
}
}
告訴我像這樣:
Ganre:動作喜劇家庭
但我想告訴我像這樣:
Ganre:動作,喜劇,家庭
您的顯示代碼在哪裏顯示類型 –
類似['String.join'](https://docs.oracle.com/javase/8/docs/api/java/lang/String.html#join -java.lang.CharSequence-java.lang.Iterable-)? – litelite