Update mode selector button style

This commit is contained in:
iKirby 2023-08-26 20:37:16 +08:00 committed by GitHub
parent c490011464
commit adfa128118
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 43 additions and 17 deletions

View file

@ -164,13 +164,15 @@ class OverviewFragment : Fragment() {
) :
RecyclerView.Adapter<ClashModeItemView>() {
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ClashModeItemView {
return ClashModeItemView(
val view = ClashModeItemView(
ViewClashModeButtonBinding.inflate(
LayoutInflater.from(parent.context),
parent,
false
)
)
view.binding.clashModeButton.clipToOutline = true
return view
}
override fun getItemCount(): Int {
@ -186,11 +188,12 @@ class OverviewFragment : Fragment() {
RecyclerView.ViewHolder(binding.root) {
fun bind(item: String, selected: String) {
binding.clashModeButton.text = item
binding.clashModeButtonText.text = item
if (item != selected) {
binding.clashModeButton.setBackgroundColor(
binding.root.context.getAttrColor(com.google.android.material.R.attr.colorButtonNormal)
binding.clashModeButtonText.setTextColor(
binding.root.context.getAttrColor(com.google.android.material.R.attr.colorOnPrimaryContainer)
)
binding.clashModeButton.setBackgroundResource(R.drawable.bg_rounded_rectangle)
binding.clashModeButton.setOnClickListener {
runCatching {
Libbox.newStandaloneCommandClient().setClashMode(item)
@ -202,9 +205,10 @@ class OverviewFragment : Fragment() {
}
}
} else {
binding.clashModeButton.setBackgroundColor(
binding.root.context.getAttrColor(com.google.android.material.R.attr.colorAccent)
binding.clashModeButtonText.setTextColor(
binding.root.context.getAttrColor(com.google.android.material.R.attr.colorOnPrimary)
)
binding.clashModeButton.setBackgroundResource(R.drawable.bg_rounded_rectangle_active)
binding.clashModeButton.isClickable = false
}

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@android:color/transparent" />
<stroke
android:width="1dp"
android:color="?colorOnPrimaryContainer" />
<corners android:radius="4dp" />
</shape>

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="?colorPrimary" />
<stroke
android:width="1dp"
android:color="?colorPrimary" />
<corners android:radius="4dp" />
</shape>

View file

@ -424,13 +424,14 @@
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="16dp">
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Mode"
android:paddingTop="16dp"
android:paddingHorizontal="16dp"
android:textAppearance="?attr/textAppearanceTitleSmall">
</TextView>
@ -440,7 +441,7 @@
android:id="@+id/clashModeList"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="16dp"
android:padding="8dp"
app:layoutManager="androidx.recyclerview.widget.GridLayoutManager"
app:spanCount="3"

View file

@ -1,17 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/clashModeButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center">
android:layout_margin="8dp"
android:background="@drawable/bg_rounded_rectangle_active">
<Button
android:id="@+id/clashModeButton"
style="@style/Widget.MaterialComponents.Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="?colorSurfaceContainer"
<TextView
android:id="@+id/clashModeButtonText"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?selectableItemBackground"
android:gravity="center"
android:paddingVertical="8dp"
android:textColor="?android:textColorPrimaryInverse"
tools:text="Direct" />
</LinearLayout>