This commit is contained in:
kunfei
2022-02-27 19:07:53 +08:00
parent e4ea55d42f
commit 452bc76c9e
6 changed files with 3 additions and 18 deletions

View File

@@ -6,9 +6,6 @@ import androidx.appcompat.widget.AppCompatCheckBox
import io.legado.app.lib.theme.accentColor
import io.legado.app.utils.applyTint
/**
* @author Aidan Follestad (afollestad)
*/
class ThemeCheckBox(context: Context, attrs: AttributeSet) : AppCompatCheckBox(context, attrs) {
init {

View File

@@ -6,9 +6,6 @@ import androidx.appcompat.widget.AppCompatEditText
import io.legado.app.lib.theme.accentColor
import io.legado.app.utils.applyTint
/**
* @author Aidan Follestad (afollestad)
*/
class ThemeEditText @JvmOverloads constructor(
context: Context,
attrs: AttributeSet? = null

View File

@@ -6,9 +6,6 @@ import android.widget.ProgressBar
import io.legado.app.lib.theme.accentColor
import io.legado.app.utils.applyTint
/**
* @author Aidan Follestad (afollestad)
*/
class ThemeProgressBar(context: Context, attrs: AttributeSet) : ProgressBar(context, attrs) {
init {

View File

@@ -6,9 +6,6 @@ import androidx.appcompat.widget.AppCompatRadioButton
import io.legado.app.lib.theme.accentColor
import io.legado.app.utils.applyTint
/**
* @author Aidan Follestad (afollestad)
*/
class ThemeRadioButton(context: Context, attrs: AttributeSet) :
AppCompatRadioButton(context, attrs) {

View File

@@ -12,18 +12,15 @@ import io.legado.app.utils.ColorUtils
import io.legado.app.utils.dp
import io.legado.app.utils.getCompatColor
/**
* @author Aidan Follestad (afollestad)
*/
class ThemeRadioNoButton(context: Context, attrs: AttributeSet) :
AppCompatRadioButton(context, attrs) {
private val isBottomBackground: Boolean
init {
val typedArray = context.obtainStyledAttributes(attrs, R.styleable.ATERadioNoButton)
val typedArray = context.obtainStyledAttributes(attrs, R.styleable.ThemeRadioNoButton)
isBottomBackground =
typedArray.getBoolean(R.styleable.ATERadioNoButton_isBottomBackground, false)
typedArray.getBoolean(R.styleable.ThemeRadioNoButton_isBottomBackground, false)
typedArray.recycle()
initTheme()
}

View File

@@ -206,7 +206,7 @@
</attr>
</declare-styleable>
<declare-styleable name="ATERadioNoButton">
<declare-styleable name="ThemeRadioNoButton">
<attr name="isBottomBackground" />
</declare-styleable>