pull/2431/head
kunfei 2 years ago
parent 6187636659
commit 99b676aa12
  1. 2
      app/src/main/java/io/legado/app/lib/prefs/NameListPreference.kt
  2. 7
      app/src/main/java/io/legado/app/lib/prefs/SwitchPreference.kt

@ -24,7 +24,6 @@ class NameListPreference(context: Context, attrs: AttributeSet) : ListPreference
}
override fun onBindViewHolder(holder: PreferenceViewHolder) {
super.onBindViewHolder(holder)
val v = Preference.bindView<TextView>(
context, holder, icon, title, summary, widgetLayoutResource,
R.id.text_view, isBottomBackground = isBottomBackground
@ -37,6 +36,7 @@ class NameListPreference(context: Context, attrs: AttributeSet) : ListPreference
v.setTextColor(pTextColor)
}
}
super.onBindViewHolder(holder)
}
}

@ -23,13 +23,8 @@ class SwitchPreference(context: Context, attrs: AttributeSet) :
}
override fun onBindViewHolder(holder: PreferenceViewHolder) {
val v = Preference.bindView<SwitchCompat>(
context,
holder,
icon,
title,
summary,
context, holder, icon, title, summary,
widgetLayoutResource,
androidx.preference.R.id.switchWidget,
isBottomBackground = isBottomBackground

Loading…
Cancel
Save