mirror of
https://github.com/SimpleMobileTools/Simple-Notes.git
synced 2025-04-04 18:51:14 +02:00
adding a null check
This commit is contained in:
parent
670cfa152a
commit
7383691f67
@ -91,23 +91,25 @@ class ChecklistFragment : NoteFragment(), ChecklistItemsListener {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private fun setupFragment() {
|
private fun setupFragment() {
|
||||||
|
if (activity == null || activity!!.isFinishing) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
val plusIcon = resources.getColoredDrawableWithColor(R.drawable.ic_plus_vector, if (activity!!.isBlackAndWhiteTheme()) Color.BLACK else Color.WHITE)
|
val plusIcon = resources.getColoredDrawableWithColor(R.drawable.ic_plus_vector, if (activity!!.isBlackAndWhiteTheme()) Color.BLACK else Color.WHITE)
|
||||||
|
|
||||||
view.apply {
|
view.checklist_fab.apply {
|
||||||
with(checklist_fab) {
|
setImageDrawable(plusIcon)
|
||||||
setImageDrawable(plusIcon)
|
background.applyColorFilter(activity!!.getAdjustedPrimaryColor())
|
||||||
background.applyColorFilter(activity!!.getAdjustedPrimaryColor())
|
setOnClickListener {
|
||||||
setOnClickListener {
|
showNewItemDialog()
|
||||||
showNewItemDialog()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
with(fragment_placeholder_2) {
|
view.fragment_placeholder_2.apply {
|
||||||
setTextColor(activity!!.getAdjustedPrimaryColor())
|
setTextColor(activity!!.getAdjustedPrimaryColor())
|
||||||
underlineText()
|
underlineText()
|
||||||
setOnClickListener {
|
setOnClickListener {
|
||||||
showNewItemDialog()
|
showNewItemDialog()
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user