私は、リストの要素を表示し、リストからそれらの項目を削除する必要がある次のコードを持っています。私はkotlinのフィルタ対マップを見てきましたが、解決策を見つける運がありません。KotlinのMutableListから要素を削除するには
var mutableList: MutableList<Object> = myImmutableList.toMutableList()
for (x in mutableList.indices)
{
val tile = row!!.getChildAt(x % 4)
val label = tile.findViewById(android.R.id.text1) as TextView
label.text = mutableList[x].name
val icon = tile.findViewById(android.R.id.icon) as ImageView
picasso.load(mutableList[x].icon).into(icon)
}