CheckableTreeView
CheckableTreeView copied to clipboard
Android Checkable and expandable tree list based on single RecyclerView
Results
1
CheckableTreeView issues
Sort by
recently updated
recently updated
newest added
When I create a TreeView using code, I'm unable to select the current item or trigger setOnCheckedChangeListener. ```kotlin val linearLayout = findViewById(R.id.tree_container) val treeView = SingleRecyclerViewImpl(baseContext) treeView.setRoots(listOf(TreeNodeFactory.buildTestTree())) val layoutParams =...