mirror of
https://github.com/SagerNet/sing-box-for-android.git
synced 2025-04-04 20:37:40 +03:00
Fix dashboard groups refresh
This commit is contained in:
parent
096d5ef43d
commit
7ac5786548
2 changed files with 40 additions and 16 deletions
|
@ -92,18 +92,34 @@ class GroupsFragment : Fragment(), CommandClient.Handler {
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressLint("NotifyDataSetChanged")
|
@SuppressLint("NotifyDataSetChanged")
|
||||||
override fun updateGroups(groups: List<OutboundGroup>) {
|
override fun updateGroups(newGroups: MutableList<OutboundGroup>) {
|
||||||
val adapter = adapter ?: return
|
val adapter = adapter ?: return
|
||||||
activity?.runOnUiThread {
|
activity?.runOnUiThread {
|
||||||
updateDisplayed(groups.isNotEmpty())
|
updateDisplayed(newGroups.isNotEmpty())
|
||||||
adapter.groups = groups
|
adapter.setGroups(newGroups)
|
||||||
adapter.notifyDataSetChanged()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private class Adapter : RecyclerView.Adapter<GroupView>() {
|
private class Adapter : RecyclerView.Adapter<GroupView>() {
|
||||||
|
|
||||||
lateinit var groups: List<OutboundGroup>
|
private lateinit var groups: MutableList<OutboundGroup>
|
||||||
|
|
||||||
|
@SuppressLint("NotifyDataSetChanged")
|
||||||
|
fun setGroups(newGroups: MutableList<OutboundGroup>) {
|
||||||
|
if (!::groups.isInitialized || groups.size != newGroups.size) {
|
||||||
|
groups = newGroups
|
||||||
|
notifyDataSetChanged()
|
||||||
|
} else {
|
||||||
|
newGroups.forEachIndexed { index, group ->
|
||||||
|
if (this.groups[index] != group) {
|
||||||
|
this.groups[index] = group
|
||||||
|
notifyItemChanged(index)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): GroupView {
|
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): GroupView {
|
||||||
return GroupView(
|
return GroupView(
|
||||||
ViewDashboardGroupBinding.inflate(
|
ViewDashboardGroupBinding.inflate(
|
||||||
|
@ -157,19 +173,11 @@ class GroupsFragment : Fragment(), CommandClient.Handler {
|
||||||
if (!::adapter.isInitialized) {
|
if (!::adapter.isInitialized) {
|
||||||
adapter = ItemAdapter(this, group, items)
|
adapter = ItemAdapter(this, group, items)
|
||||||
binding.itemList.adapter = adapter
|
binding.itemList.adapter = adapter
|
||||||
/* val divider =
|
|
||||||
MaterialDividerItemDecoration(
|
|
||||||
binding.root.context,
|
|
||||||
LinearLayoutManager.VERTICAL
|
|
||||||
)
|
|
||||||
divider.isLastItemDecorated = false
|
|
||||||
binding.itemList.addItemDecoration(divider)*/
|
|
||||||
(binding.itemList.itemAnimator as SimpleItemAnimator).supportsChangeAnimations =
|
(binding.itemList.itemAnimator as SimpleItemAnimator).supportsChangeAnimations =
|
||||||
false
|
false
|
||||||
binding.itemList.layoutManager = LinearLayoutManager(binding.root.context)
|
binding.itemList.layoutManager = LinearLayoutManager(binding.root.context)
|
||||||
} else {
|
} else {
|
||||||
adapter.items = items
|
adapter.setItems(items)
|
||||||
adapter.notifyDataSetChanged()
|
|
||||||
}
|
}
|
||||||
updateExpand()
|
updateExpand()
|
||||||
}
|
}
|
||||||
|
@ -234,9 +242,25 @@ class GroupsFragment : Fragment(), CommandClient.Handler {
|
||||||
private class ItemAdapter(
|
private class ItemAdapter(
|
||||||
val groupView: GroupView,
|
val groupView: GroupView,
|
||||||
val group: OutboundGroup,
|
val group: OutboundGroup,
|
||||||
var items: List<OutboundGroupItem> = emptyList()
|
private var items: MutableList<OutboundGroupItem> = mutableListOf()
|
||||||
) :
|
) :
|
||||||
RecyclerView.Adapter<ItemGroupView>() {
|
RecyclerView.Adapter<ItemGroupView>() {
|
||||||
|
|
||||||
|
@SuppressLint("NotifyDataSetChanged")
|
||||||
|
fun setItems(newItems: MutableList<OutboundGroupItem>) {
|
||||||
|
if (items.size != newItems.size) {
|
||||||
|
items = newItems
|
||||||
|
notifyDataSetChanged()
|
||||||
|
} else {
|
||||||
|
newItems.forEachIndexed { index, item ->
|
||||||
|
if (items[index] != item) {
|
||||||
|
items[index] = item
|
||||||
|
notifyItemChanged(index)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ItemGroupView {
|
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ItemGroupView {
|
||||||
return ItemGroupView(
|
return ItemGroupView(
|
||||||
ViewDashboardGroupItemBinding.inflate(
|
ViewDashboardGroupItemBinding.inflate(
|
||||||
|
|
|
@ -31,7 +31,7 @@ open class CommandClient(
|
||||||
fun onConnected() {}
|
fun onConnected() {}
|
||||||
fun onDisconnected() {}
|
fun onDisconnected() {}
|
||||||
fun updateStatus(status: StatusMessage) {}
|
fun updateStatus(status: StatusMessage) {}
|
||||||
fun updateGroups(groups: List<OutboundGroup>) {}
|
fun updateGroups(newGroups: MutableList<OutboundGroup>) {}
|
||||||
fun clearLog() {}
|
fun clearLog() {}
|
||||||
fun appendLog(message: String) {}
|
fun appendLog(message: String) {}
|
||||||
fun initializeClashMode(modeList: List<String>, currentMode: String) {}
|
fun initializeClashMode(modeList: List<String>, currentMode: String) {}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue