BijoySingh / Scarlet-Notes

[Discontinued and Unsupported Project] Simple yet powerful rich note taking android application, with a lot of flexibilty of usage
https://play.google.com/store/apps/details?id=com.bijoysingh.quicknote
GNU General Public License v3.0
358 stars 95 forks source link

Feature request: Check the check box when clicking on the label #106

Closed bugnano closed 5 years ago

bugnano commented 5 years ago

Instead of clicking only the check box to check/uncheck it, it would be more comfortable to also allow clicking on its label to check/uncheck the check box

BijoySingh commented 5 years ago

I tried doing this, it seems I can either:

It's because making the text selectable makes the click listener go weird. Personally I think there is more value in making the text editable, as the click target for the checkbox is not too small.

bugnano commented 5 years ago

What about treating the check box label as 2 different things, depending on which mode is used. By mode I mean that once the app is started, we have all the notes, let's call it the main mode. Once you select a note, you are in viewing mode, which means that you can view the contents of the note, you can check/uncheck boxes, but you cannot edit them. When you press the pencil icon, you are in edit mode, which means that you can edit the note, and select text.

It would be more convenient to have the check/uncheck handler in view mode, and the text select handler in edit mode, IMHO.