Fix groups ui

This commit is contained in:
世界 2024-04-23 13:58:17 +08:00
parent 983a771212
commit f9fcd40059
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
2 changed files with 22 additions and 10 deletions

View file

@ -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 {

View file

@ -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>