SecUSo / privacy-friendly-todo-list

Privacy Friendly App to manage To-Do lists on Android.
Apache License 2.0
84 stars 40 forks source link

UI overlaps Todo text #68

Closed PeterHindes closed 4 months ago

PeterHindes commented 4 years ago

Observe the bottom right of the attached image. Screenshot_20200305-231441__01__01

0xC0FFEEC0DE commented 4 months ago

Hello @PeterHindes , Hello @udenr , would it be an acceptable solution to make the + button semi-transparent?

Otherwise the height of the task list could be reduced so that there is space for a bar at the bottom. The + button would be on that bar and would no longer hide the text. Disadvantage: We would loose space for the task list.

udenr commented 4 months ago

I guess the current problem is only with the last item in the list? Because for every other item, you could just scroll down to see it.

One option I like is to add some padding to the bottom of the list so that you can always scroll down a little further than the last item. You can try adding the following attributes to the ListView to see if that solves the problem:

android:paddingBottom="80dp"
android:clipToPadding="false"
0xC0FFEEC0DE commented 4 months ago

Thanks @udenr , your suggestion works well.