You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, our calendar looks this, where the title and the text are misaligned and the cell border is very unclear:
From university_event.xml, each entry in the calendar is supposed to look like this, where the long horizontal textview is supposed the name of the event, while the date is formatted with the day stacked on top of the month (separated by two textviews), as shown below:
However, the issue is, that in the code, we populate the entire date (month + date) on the month textview, while the day textview is not populated for some reason, hence causing this misalignment.
Solutions
Separate the date and populate the day and month textview respectively on UniversityEventAdapter (Should be a quick fix)
Rewrite the calendar alongside with the homepage redesign with Jetpack, which @Akula112233 is working on.
The text was updated successfully, but these errors were encountered:
Issue:
Currently, our calendar looks this, where the title and the text are misaligned and the cell border is very unclear:
From
university_event.xml
, each entry in the calendar is supposed to look like this, where the long horizontal textview is supposed the name of the event, while the date is formatted with the day stacked on top of the month (separated by two textviews), as shown below:However, the issue is, that in the code, we populate the entire date (month + date) on the month textview, while the day textview is not populated for some reason, hence causing this misalignment.
Solutions
UniversityEventAdapter
(Should be a quick fix)The text was updated successfully, but these errors were encountered: