I would like to implement a ListView, and each element has several tags, such as a StackOverflow list (a style view of the master detail style). Each tag in the elements is listed by tags string array.
Tags do not need to be changed / filtered when they are first shown, so I think that you do NOT need to use an adapter (the adapter is designed to bind between the data model and the view, right?). Moreover, I think that using an adapter in each element can cause performance problems to handle additional bindings.
Is there a workaround to add ListView items without using an Adapter ?
For reference, in C #, listView.Items.Add("item1"); can just display items.
source share