Giter Site home page Giter Site logo

Comments (6)

SundeepK avatar SundeepK commented on July 29, 2024

I haven't looked at the example yet, I will when I get time sometime later.

Quick reply. When you load the calendar oncreate view in your fragment. Try calling invalidate() on the calendar instance. This will cause it to redraw.

from compactcalendarview.

hbomb1977 avatar hbomb1977 commented on July 29, 2024

thanks for your answer. i call the invalidate method into "onCreateView".

I found a solution, but i'm not sure that's the best practice. I use the "onResume" method to force reloading (so i need to declare compactCalendarView and adapter in class instead of into OnCreate method)

    @Override
    public void onResume() {
        super.onResume();

        Handler handler = new Handler();
        Runnable updater = new Runnable() {
            public void run() {
                if(compactCalendarView != null) {
                    compactCalendarView.invalidate();
                    adapter.notifyDataSetChanged();
                }
            }
        };

        handler.post(updater);
    }

thanks for your help

hbomb

from compactcalendarview.

SundeepK avatar SundeepK commented on July 29, 2024

You shouldn't need to create a runnable to do this, at least I don't think you need to. I'll have a look at your example on the weekend and let you know. Maybe the calendar is missing something? I'll have a play around with things. Note, I have used the calendar in a fragment before, so I think it should be possible.

Thanks.

from compactcalendarview.

SundeepK avatar SundeepK commented on July 29, 2024

Should be available in next release, which will be available over the next day or so.

from compactcalendarview.

SundeepK avatar SundeepK commented on July 29, 2024

Available in:

dependencies {
    compile 'com.github.sundeepk:compact-calendar-view:1.7.4'
}

from compactcalendarview.

hbomb1977 avatar hbomb1977 commented on July 29, 2024

thank you very much for your work, everything is ok now :)

from compactcalendarview.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.