mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-04-03 04:47:36 +03:00
fix: Null
This commit is contained in:
parent
e05b904e78
commit
a3c5237c2b
1 changed files with 4 additions and 4 deletions
|
@ -36,7 +36,7 @@ class AdvancedUnlockInfoView @JvmOverloads constructor(context: Context,
|
|||
defStyle: Int = 0)
|
||||
: LinearLayout(context, attrs, defStyle) {
|
||||
|
||||
private var biometricButtonView: Button
|
||||
private var biometricButtonView: Button? = null
|
||||
|
||||
init {
|
||||
val inflater = context.getSystemService(Context.LAYOUT_INFLATER_SERVICE) as LayoutInflater?
|
||||
|
@ -46,15 +46,15 @@ class AdvancedUnlockInfoView @JvmOverloads constructor(context: Context,
|
|||
}
|
||||
|
||||
fun setIconViewClickListener(listener: OnClickListener?) {
|
||||
biometricButtonView.setOnClickListener(listener)
|
||||
biometricButtonView?.setOnClickListener(listener)
|
||||
}
|
||||
|
||||
var title: CharSequence
|
||||
get() {
|
||||
return biometricButtonView.text?.toString() ?: ""
|
||||
return biometricButtonView?.text?.toString() ?: ""
|
||||
}
|
||||
set(value) {
|
||||
biometricButtonView.text = value
|
||||
biometricButtonView?.text = value
|
||||
}
|
||||
|
||||
fun setTitle(@StringRes textId: Int) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue