TellH / RecyclerTreeView

TreeView implement in Android with RecyclerView.
Apache License 2.0
651 stars 117 forks source link

support json #55

Open SudoDios opened 3 years ago

SudoDios commented 3 years ago

Please add feature to create list from json. Thanks

SudoDios commented 3 years ago

how to move items ?

SudoDios commented 3 years ago

How to remove item (s) ? How to update item ?

KnIfER commented 3 years ago

Use fastJson to parse the file . Use custom Node class

Node{ JSONObject content; ArrayList childrenList; JSONArray children. }

Parse the root json object recursively, parse it into a root Node. While modifying the data, also apply it to the original json content and children nodes.

Sort, expand, move, piece of a cake.