mirror of
https://github.com/SagerNet/sing-box-for-android.git
synced 2025-04-04 12:27:37 +03:00
Fix group adapter
This commit is contained in:
parent
d62fe70db5
commit
7549225ae3
1 changed files with 2 additions and 1 deletions
|
@ -182,6 +182,7 @@ class GroupsFragment : Fragment(), CommandClient.Handler {
|
||||||
false
|
false
|
||||||
binding.itemList.layoutManager = GridLayoutManager(binding.root.context, 2)
|
binding.itemList.layoutManager = GridLayoutManager(binding.root.context, 2)
|
||||||
} else {
|
} else {
|
||||||
|
adapter.group = group
|
||||||
adapter.setItems(items)
|
adapter.setItems(items)
|
||||||
}
|
}
|
||||||
updateExpand()
|
updateExpand()
|
||||||
|
@ -241,7 +242,7 @@ class GroupsFragment : Fragment(), CommandClient.Handler {
|
||||||
|
|
||||||
private class ItemAdapter(
|
private class ItemAdapter(
|
||||||
val groupView: GroupView,
|
val groupView: GroupView,
|
||||||
val group: OutboundGroup,
|
var group: OutboundGroup,
|
||||||
private var items: MutableList<OutboundGroupItem> = mutableListOf()
|
private var items: MutableList<OutboundGroupItem> = mutableListOf()
|
||||||
) :
|
) :
|
||||||
RecyclerView.Adapter<ItemGroupView>() {
|
RecyclerView.Adapter<ItemGroupView>() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue