Tachyon
Tachyon copied to clipboard
An Android library that provides a customizable calendar day view UI widget.
## Description: Added Scrollbar to the CalendarView to improve user experience and to estimate the events in a certain day. ### Sample Demo with Scrollbar: https://user-images.githubusercontent.com/54114888/130210867-85cac1e2-440b-4164-8691-83e782d18d82.mp4
## Description: Changed the Primary color of the sample application to the Official color of LinkedIn to improve the user interface.
Is it possible to do horizontal scroll view instead of vertical scroll? I want to create time and event to scroll horizontal. Any idea/suggestions?
Step to produce: 1. add following line to inital events: new Event("Lunch", "Cafeteria", 13, 30, 3, android.R.color.holo_green_dark), 2. build and run
I found the issue in `DayView.java::setEventRects()`: ``` int filteredStartMinute = Math.max(startMinute, timeRange.startMinute); int duration = Math.min(endMinute, timeRange.endMinute) - filteredStartMinute; if (duration < MIN_DURATION_MINUTES) { duration = MIN_DURATION_MINUTES; filteredStartMinute = endMinute...
I reported this bug here: https://github.com/linkedin/Tachyon/issues/12 It seemed like a simple enough fix, so I took a stab at it. With this change, I am seeing the problem event drawn...
Can you add the "now" line like in this example? [https://ibb.co/B63F51C](https://ibb.co/B63F51C) Thanks
Hello, thank you for your help. I have a question. When drawing Hour Lavel, I'm drawing the items specified in Start Hour and End Hour. Is it possible to label...
Which method can change or give a date to our events : like those new Event("Walk the dog", "Park", 0, 0, 30, android.R.color.holo_red_dark), new Event("Meeting", "Office", 1, 30, 90, android.R.color.holo_purple),...
What's the difference between `eventViews` and `filteredEventViews` in DayView class ? https://github.com/linkedin/Tachyon/blob/585095730fa2999675e9a35a0048ccd51140c006/tachyon/src/main/java/com/linkedin/android/tachyon/DayView.java#L63