add ScrollView to player language/subtitles selection

This commit is contained in:
2022-11-05 11:24:16 +01:00
parent 71d5c58653
commit 777c6e0212
2 changed files with 22 additions and 6 deletions

View File

@ -25,6 +25,7 @@ class LanguageSettingsDialogFragment : DialogFragment() {
private lateinit var binding: PlayerLanguageSettingsBinding
private var selectedLocale = Locale.ROOT
private var selectedView: View? = null
companion object {
const val TAG = "LanguageSettingsDialogFragment"
@ -62,6 +63,12 @@ class LanguageSettingsDialogFragment : DialogFragment() {
// initially hide the status and navigation bar
hideBars(requireDialog().window, binding.root)
// scroll to the position of the view, if it's the selected language
binding.scrollLanguages.post {
println("top: ${selectedView?.top}")
binding.scrollLanguages.scrollTo(0, selectedView?.top ?: 0)
}
}
override fun onDismiss(dialog: DialogInterface) {
@ -82,6 +89,8 @@ class LanguageSettingsDialogFragment : DialogFragment() {
setCompoundDrawablesRelativeWithIntrinsicBounds(R.drawable.ic_baseline_check_24, 0, 0, 0)
compoundDrawablesRelative.getOrNull(0)?.setTint(Color.WHITE)
compoundDrawablePadding = 12
selectedView = this
} else {
setTextColor(context.resources.getColor(R.color.textSecondaryDark, context.theme))
setPadding(75, 0, 0, 0)