pull/34/head
kunfei 5 years ago
parent ea803610c3
commit caa723a4a2
  1. 13
      app/src/main/java/io/legado/app/lib/theme/prefs/ATEPreferenceCategory.kt

@ -13,14 +13,11 @@ import io.legado.app.lib.theme.ThemeStore
class ATEPreferenceCategory : PreferenceCategory { class ATEPreferenceCategory : PreferenceCategory {
@RequiresApi(api = Build.VERSION_CODES.LOLLIPOP) @RequiresApi(api = Build.VERSION_CODES.LOLLIPOP)
constructor(context: Context, attrs: AttributeSet, defStyleAttr: Int, defStyleRes: Int) : super( constructor(context: Context, attrs: AttributeSet, defStyleAttr: Int, defStyleRes: Int) :
context, super(context, attrs, defStyleAttr, defStyleRes)
attrs,
defStyleAttr, constructor(context: Context, attrs: AttributeSet, defStyleAttr: Int) :
defStyleRes super(context, attrs, defStyleAttr)
)
constructor(context: Context, attrs: AttributeSet, defStyleAttr: Int) : super(context, attrs, defStyleAttr)
constructor(context: Context, attrs: AttributeSet) : super(context, attrs) constructor(context: Context, attrs: AttributeSet) : super(context, attrs)

Loading…
Cancel
Save