mirror of
https://github.com/SimpleMobileTools/Simple-Notes.git
synced 2025-04-05 11:11:05 +02:00
replace checklist item editing with renaming
This commit is contained in:
parent
451c7bb19f
commit
aedf7b7d79
@ -36,7 +36,7 @@ class ChecklistAdapter(activity: BaseSimpleActivity, var items: ArrayList<Checkl
|
||||
}
|
||||
|
||||
when (id) {
|
||||
R.id.cab_edit -> editNote()
|
||||
R.id.cab_rename -> renameChecklistItem()
|
||||
R.id.cab_delete -> deleteSelection()
|
||||
}
|
||||
}
|
||||
@ -55,7 +55,7 @@ class ChecklistAdapter(activity: BaseSimpleActivity, var items: ArrayList<Checkl
|
||||
return
|
||||
}
|
||||
|
||||
menu.findItem(R.id.cab_edit).isVisible = isOneItemSelected()
|
||||
menu.findItem(R.id.cab_rename).isVisible = isOneItemSelected()
|
||||
}
|
||||
|
||||
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int) = createViewHolder(R.layout.item_checklist, parent)
|
||||
@ -76,7 +76,7 @@ class ChecklistAdapter(activity: BaseSimpleActivity, var items: ArrayList<Checkl
|
||||
checkDrawable = res.getColoredDrawableWithColor(R.drawable.ic_check_big, res.getColor(R.color.md_green_700))
|
||||
}
|
||||
|
||||
private fun editNote() {
|
||||
private fun renameChecklistItem() {
|
||||
|
||||
}
|
||||
|
||||
|
@ -2,8 +2,8 @@
|
||||
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||
<item
|
||||
android:id="@+id/cab_edit"
|
||||
android:icon="@drawable/ic_edit"
|
||||
android:id="@+id/cab_rename"
|
||||
android:icon="@drawable/ic_rename_new"
|
||||
android:title="@string/rename"
|
||||
app:showAsAction="ifRoom"/>
|
||||
<item
|
||||
|
Loading…
x
Reference in New Issue
Block a user