Incognoto / incognoto

Take control of your personal data with Incognoto, your secure incognito notes.
https://play.google.com/store/apps/details?id=com.notes.incognoto
GNU General Public License v2.0
4 stars 1 forks source link

As a user I want to see if a note preview has more content #34

Closed Collinux closed 6 years ago

Collinux commented 6 years ago

Currently all note content on the main list is truncated so only a few lines show. This is to make sure users aren't infinitely scrolling through long notes on the main page - instead they can tap the small preview in the list to show the expanded view.

The problem is the lack of context on the list... if a note is super long then there's no way to tell if the preview shows more information. It would be nice to have an ellipsis added to the end if a note has more info.

Pseudocode:

if notePreviewTextView.length > 140:
   notePreview.setText(noteContent + "...")