Skip to content
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

Drawing issues on getWeekdayCellView() method #25

Open
fncapps opened this issue Mar 20, 2016 · 0 comments
Open

Drawing issues on getWeekdayCellView() method #25

fncapps opened this issue Mar 20, 2016 · 0 comments
Labels

Comments

@fncapps
Copy link

fncapps commented Mar 20, 2016

I inflate each of my WeekdayCellView with a layout like is shown in the code.

@Override
public BaseCellView getWeekdayCellView(int position, View convertView, ViewGroup parent) {
    BaseCellView cellView = (BaseCellView) convertView;

    if (cellView == null) {
        LayoutInflater inflater = LayoutInflater.from(MaterialFullCalendar.this);
        cellView = (BaseCellView) inflater.inflate(R.layout.fullcalendar_weekday_cell, null);
    }

    return cellView;
}

But when I run my app, the layout isn't filled correctly and some pixels are skipped. Notice that in the image below, the above blue is part of the Toolbar and just below I have my FlexibleCalendarwidget.

drawing-issue

drawing-issue-2

@p-v p-v added the bug label Mar 21, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants