AgendaCalendarView icon indicating copy to clipboard operation
AgendaCalendarView copied to clipboard

UI Broken. AgendaView is overlaping CalendarView

Open sgr801 opened this issue 9 years ago • 1 comments

AgendaView is Overlaping Calendar View. Thats why CalendarView can not be click or Expanded. capture

view_agendacalendar.xml

<com.github.tibolte.agendacalendarview.calendar.CalendarView
    ..../>

<com.github.tibolte.agendacalendarview.agenda.AgendaView
    ......>
</com.github.tibolte.agendacalendarview.agenda.AgendaView>

<com.github.tibolte.agendacalendarview.widgets.FloatingActionButton
    ...../>

Guessing due to merge tag its behaving like this, If we use RelativeLayout instead of merge problem gets solve. but when we expand CalendarView adds additional space between CalendarView and AgendaView like bellow image.

image

sgr801 avatar Sep 02 '16 07:09 sgr801

AgendaCalendarView has a method enableCalenderView For example

    74         mAgendaCalendarView.init(Locale.getDefault(), readyWeeks,readyDays,readyEvents,this);
    75         mAgendaCalendarView.addEventRenderer(new DrawableEventRenderer());
+  76         mAgendaCalendarView.enableCalenderView(true);

anlijiu avatar Sep 05 '16 08:09 anlijiu