Disable swiping on switch in SwitchSettingsPreference
(cherry picked from commit 147978b932497d4ac914dd95807159b7e023fe2c)
This commit is contained in:
parent
d8ee654a65
commit
3bb005acb2
@ -1,7 +1,9 @@
|
||||
package eu.kanade.tachiyomi.widget.preference
|
||||
|
||||
import android.annotation.SuppressLint
|
||||
import android.content.Context
|
||||
import android.util.AttributeSet
|
||||
import android.view.MotionEvent
|
||||
import android.view.View
|
||||
import androidx.preference.PreferenceViewHolder
|
||||
import androidx.preference.SwitchPreferenceCompat
|
||||
@ -16,11 +18,17 @@ class SwitchSettingsPreference @JvmOverloads constructor(context: Context, attrs
|
||||
widgetLayoutResource = R.layout.pref_settings
|
||||
}
|
||||
|
||||
@SuppressLint("ClickableViewAccessibility")
|
||||
override fun onBindViewHolder(holder: PreferenceViewHolder) {
|
||||
super.onBindViewHolder(holder)
|
||||
|
||||
holder.findViewById(R.id.button).setOnClickListener {
|
||||
onSettingsClick?.onClick(it)
|
||||
}
|
||||
|
||||
// Disable swiping to align with SwitchPreferenceCompat
|
||||
holder.findViewById(R.id.switchWidget).setOnTouchListener { _, event ->
|
||||
event.actionMasked == MotionEvent.ACTION_MOVE
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user