Hi guys, android newbie here.
I've recently started building a simple calendar-dayplanner project, strictly for deepening my knowledge in android and as a bit of a practice. Up until now my app can display a dayview where you can access and create new events, and an event-creator where you can set the time, label etc.
I have some general questions about how It's best for me to handle certain aspects of this project. My code works, but I don't really know if it;s good, or if I over-complicated things. Would love you hear your opinions:
For displaying the day-activities I used LinearLayout inside a scrollVIew. I created the methods too add new events (which have a defined view), edit events, and change the list according to the chronological order myself. Now, I do wonder if I'm better off switching now to RecyclerView or ListView, and using adapters, mostly because I want to enable picking several events in once for delete.
I'm asking becuase I fear that even though the code works, it may cause problems down the road.
I've recently started building a simple calendar-dayplanner project, strictly for deepening my knowledge in android and as a bit of a practice. Up until now my app can display a dayview where you can access and create new events, and an event-creator where you can set the time, label etc.
I have some general questions about how It's best for me to handle certain aspects of this project. My code works, but I don't really know if it;s good, or if I over-complicated things. Would love you hear your opinions:
For displaying the day-activities I used LinearLayout inside a scrollVIew. I created the methods too add new events (which have a defined view), edit events, and change the list according to the chronological order myself. Now, I do wonder if I'm better off switching now to RecyclerView or ListView, and using adapters, mostly because I want to enable picking several events in once for delete.
I'm asking becuase I fear that even though the code works, it may cause problems down the road.