mirror of
https://github.com/SagerNet/sing-box-for-android.git
synced 2025-04-04 04:17:37 +03:00
Fix update group view
This commit is contained in:
parent
00e3a80875
commit
1b6dd2e216
1 changed files with 7 additions and 6 deletions
|
@ -149,7 +149,7 @@ class GroupsFragment : Fragment(), CommandClient.Handler {
|
||||||
private lateinit var group: Group
|
private lateinit var group: Group
|
||||||
private lateinit var items: List<GroupItem>
|
private lateinit var items: List<GroupItem>
|
||||||
private lateinit var adapter: ItemAdapter
|
private lateinit var adapter: ItemAdapter
|
||||||
private lateinit var textWatcher: TextWatcher
|
private var textWatcher: TextWatcher? = null
|
||||||
|
|
||||||
@OptIn(DelicateCoroutinesApi::class)
|
@OptIn(DelicateCoroutinesApi::class)
|
||||||
@SuppressLint("NotifyDataSetChanged")
|
@SuppressLint("NotifyDataSetChanged")
|
||||||
|
@ -198,15 +198,15 @@ class GroupsFragment : Fragment(), CommandClient.Handler {
|
||||||
}
|
}
|
||||||
binding.itemList.isVisible = newExpandStatus
|
binding.itemList.isVisible = newExpandStatus
|
||||||
binding.groupSelected.isVisible = !newExpandStatus
|
binding.groupSelected.isVisible = !newExpandStatus
|
||||||
|
val textView = (binding.groupSelected.editText as MaterialAutoCompleteTextView)
|
||||||
|
if (textWatcher != null) {
|
||||||
|
textView.removeTextChangedListener(textWatcher)
|
||||||
|
}
|
||||||
if (!newExpandStatus) {
|
if (!newExpandStatus) {
|
||||||
binding.groupSelected.text = group.selected
|
binding.groupSelected.text = group.selected
|
||||||
binding.groupSelected.isEnabled = group.selectable
|
binding.groupSelected.isEnabled = group.selectable
|
||||||
if (group.selectable) {
|
if (group.selectable) {
|
||||||
val textView = (binding.groupSelected.editText as MaterialAutoCompleteTextView)
|
|
||||||
textView.setSimpleItems(group.items.toList().map { it.tag }.toTypedArray())
|
textView.setSimpleItems(group.items.toList().map { it.tag }.toTypedArray())
|
||||||
if (::textWatcher.isInitialized) {
|
|
||||||
textView.removeTextChangedListener(textWatcher)
|
|
||||||
}
|
|
||||||
textWatcher = textView.addTextChangedListener {
|
textWatcher = textView.addTextChangedListener {
|
||||||
val selected = textView.text.toString()
|
val selected = textView.text.toString()
|
||||||
if (selected != group.selected) {
|
if (selected != group.selected) {
|
||||||
|
@ -301,7 +301,8 @@ class GroupsFragment : Fragment(), CommandClient.Handler {
|
||||||
Libbox.newStandaloneCommandClient().selectOutbound(group.tag, item.tag)
|
Libbox.newStandaloneCommandClient().selectOutbound(group.tag, item.tag)
|
||||||
}.onFailure {
|
}.onFailure {
|
||||||
withContext(Dispatchers.Main) {
|
withContext(Dispatchers.Main) {
|
||||||
binding.root.context.errorDialogBuilder(it).show()
|
binding.root.context.errorDialogBuilder("select outbound: ${it.localizedMessage}")
|
||||||
|
.show()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue