-
-
Notifications
You must be signed in to change notification settings - Fork 158
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding notification feature #497
Adding notification feature #497
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay, it definitely does work after your last fix. Pretty cool!
I see a few issues though:
- The alarms are saved to SharedPreferences, I'd much rather see these included in the database so we can export/import them. That way if people switch to another device they won't lose their reminders.
- Setting an exact date and time for each notification seems a bit too much. I think it would be much nicer to instead have an option in settings for "Reminder time", defaulting to something like 9:00 AM, so it is very easy to set all the reminders to a time of day that fits your schedule best.
- I think it would be much nicer UI to instead of the checkbox and date thing, have an Android calendar-style thing where you click "Add reminder" and add multiple reminders:
(Of course, "10 minutes" would not be a valid option. It'd be more like entering the amount of days in advance, we could just use a input field for that so people can enter anything from 1 through whatever high number they'd like)
Thanks!
|
|
|
|
Sure , let's do that . |
That looks awesome! I'd personally put the "Add reminder" button below all existing reminders and put a "Reminders" text above it so it is clear the next stuff in the app is a list of reminders, but you definitely made an awesome UI there! |
Thanks ! :) I think keeping "Add reminder" button above the reminders will make it easier to add a reminder when there are multiple But I can change it ,if you want. |
I would personally strongly prefer putting the text "Reminders" on top and the "Add reminder" button on the bottom because:
So, that would be this layout:
|
Yeah , you are right . I will change it . |
I would remove the spacing above the "Add reminder" button but otherwise yes, perfect :) |
Hey! please review the changes.
Resolves #410