我有一個StringListList,我想在Spinner或下拉菜單中顯示,但主要發生的是我有字符串重複,我想要做的是搜索arrayList的相似之處,如果它發現一個字符串例如「Hello World」在arrayList中出現7次,移除其他6並將其分配給7以表明它發生了7次,所以我的新字符串將是「Hello world (7)」,任何人都可以幫我,我怎麼能在我下面的代碼來實現這一點:如何搜索ArrayList中的相似
for(int i = 0; i < timesCalleddb.getAllTimesCalled(missedCall.getNumber()).size(); i++)
{
if(timesCalleddb.getAllTimesCalled(missedCall.getNumber()).get(i) ==
timesCalleddb.getAllTimesCalled(missedCall.getNumber()).get(i+1))
{
//where am guessing the implementation my problem should be
}
}
但我如何跟蹤一個特定的字符串重複多少次? –
@ChromeLandos對不起,我錯過了那部分,但我已經對答案進行了編輯。但是我仍然建議你使用'HashMap'。 –