mirror of
https://github.com/SagerNet/sing-box-for-android.git
synced 2025-04-03 03:47:38 +03:00
Fix groups ui
This commit is contained in:
parent
983a771212
commit
f9fcd40059
2 changed files with 22 additions and 10 deletions
|
@ -212,12 +212,24 @@ class GroupsFragment : Fragment(), CommandClient.Handler {
|
|||
if (selected != group.selected) {
|
||||
updateSelected(group, selected)
|
||||
}
|
||||
GlobalScope.launch {
|
||||
runCatching {
|
||||
Libbox.newStandaloneCommandClient()
|
||||
.selectOutbound(group.tag, selected)
|
||||
}.onFailure {
|
||||
withContext(Dispatchers.Main) {
|
||||
binding.root.context.errorDialogBuilder(it).show()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if (newExpandStatus) {
|
||||
binding.urlTestButton.isVisible = true
|
||||
binding.expandButton.setImageResource(R.drawable.ic_expand_less_24)
|
||||
} else {
|
||||
binding.urlTestButton.isVisible = false
|
||||
binding.expandButton.setImageResource(R.drawable.ic_expand_more_24)
|
||||
}
|
||||
binding.expandButton.setOnClickListener {
|
||||
|
|
|
@ -48,16 +48,6 @@
|
|||
android:gravity="end"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<ImageButton
|
||||
android:id="@+id/expandButton"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="4dp"
|
||||
android:backgroundTint="?colorSurfaceContainerLow"
|
||||
android:contentDescription="@string/expand"
|
||||
android:src="@drawable/ic_expand_less_24"
|
||||
app:tint="?colorControlNormal" />
|
||||
|
||||
<ImageButton
|
||||
android:id="@+id/urlTestButton"
|
||||
android:layout_width="wrap_content"
|
||||
|
@ -68,6 +58,16 @@
|
|||
android:src="@drawable/ic_electric_bolt_24"
|
||||
app:tint="?colorControlNormal" />
|
||||
|
||||
<ImageButton
|
||||
android:id="@+id/expandButton"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="4dp"
|
||||
android:backgroundTint="?colorSurfaceContainerLow"
|
||||
android:contentDescription="@string/expand"
|
||||
android:src="@drawable/ic_expand_less_24"
|
||||
app:tint="?colorControlNormal" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue