You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iceraven-browser/app/src/main/java/org/mozilla/fenix/settings/deletebrowsingdata/DeleteBrowsingDataItem.kt

80 lines
2.6 KiB
Kotlin

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
package org.mozilla.fenix.settings.deletebrowsingdata
import android.content.Context
import android.util.AttributeSet
import android.view.LayoutInflater
import android.view.View
import android.widget.TextView
import androidx.constraintlayout.widget.ConstraintLayout
import androidx.core.content.withStyledAttributes
import org.mozilla.fenix.R
import org.mozilla.fenix.databinding.DeleteBrowsingDataItemBinding
class DeleteBrowsingDataItem @JvmOverloads constructor(
context: Context,
attrs: AttributeSet? = null,
defStyleAttr: Int = 0
) : ConstraintLayout(context, attrs, defStyleAttr) {
private companion object {
private const val ENABLED_ALPHA = 1f
private const val DISABLED_ALPHA = 0.6f
}
private var binding: DeleteBrowsingDataItemBinding
val titleView: TextView
get() = binding.title
val subtitleView: TextView
get() = binding.subtitle
var isChecked: Boolean
get() = binding.checkbox.isChecked
set(value) {
binding.checkbox.isChecked = value
}
var onCheckListener: ((Boolean) -> Unit)? = null
init {
val view =
LayoutInflater.from(context).inflate(R.layout.delete_browsing_data_item, this, true)
binding = DeleteBrowsingDataItemBinding.bind(view)
setOnClickListener {
binding.checkbox.isChecked = !binding.checkbox.isChecked
}
binding.checkbox.setOnCheckedChangeListener { _, isChecked ->
onCheckListener?.invoke(isChecked)
}
context.withStyledAttributes(attrs, R.styleable.DeleteBrowsingDataItem, defStyleAttr, 0) {
val titleId = getResourceId(
R.styleable.DeleteBrowsingDataItem_deleteBrowsingDataItemTitle,
R.string.browser_menu_library
)
val subtitleId = getResourceId(
R.styleable.DeleteBrowsingDataItem_deleteBrowsingDataItemSubtitle,
R.string.empty_string
)
binding.title.text = resources.getString(titleId)
val subtitleText = resources.getString(subtitleId)
binding.subtitle.text = subtitleText
if (subtitleText.isBlank()) binding.subtitle.visibility = View.GONE
}
}
override fun setEnabled(enabled: Boolean) {
super.setEnabled(enabled)
alpha = if (enabled) ENABLED_ALPHA else DISABLED_ALPHA
}
}