Get all ListView items(rows)

前端 未结 4 1180
孤街浪徒
孤街浪徒 2020-12-17 22:53

How may I get all children of an item of ListView ?
There are methods to get child at position but I was not able to find any method which returns collectio

4条回答
  •  借酒劲吻你
    2020-12-17 23:03

    You get all list item from list adapter through iteration as below

    for (int i=0;i

    Update : You can compare specific item using index with list adapter all items as below :

    for (int i=0;i

提交回复
热议问题