Coder Social home page Coder Social logo

Comments (5)

plattysoft avatar plattysoft commented on September 22, 2024

I haven't tried that. but the system uses the window coordinates to get the X and Y of the View, so "in theory" should work fine.

Sorry I can't help you better.

from leonids.

MrLoveQD avatar MrLoveQD commented on September 22, 2024

Oh, thanks you.
It don't work for me.

from leonids.

lvaizer avatar lvaizer commented on September 22, 2024

wont work on dialogs
+1

from leonids.

Aystub avatar Aystub commented on September 22, 2024

I have a custom AppCompatDialog I've built and in it I have a FrameLayout that's the length of the dialog and 200dp high (basically a rectangle). At the top of the dialog I have an emitter that's the length of the dialog. So I have confetti rain down inside my FrameLayout basically. I got it to work with the library so here's a simplified version of my dialog class:

public class BadgeDialog extends AppCompatDialog {

    public BadgeDialog(Context ctx){ 
        super(context);
        // Need to set the OwnerActivity so library can reference it
        if (context instanceof Activity) {
            setOwnerActivity((Activity) context);
        }
        init();
     }

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
    }

    private void init() {
        setContentView(R.layout.dialog_badge);
        FrameLayout awardHolder = (FrameLayout) findViewById(R.id.award_holder);    
        View emitter = (View) findViewById(R.id.emitter);

        if(getOwnerActivity() != null) {
            // Make sure the emitter View has been measured before attaching the library to it
            ViewTreeObserver vto = emitter.getViewTreeObserver();
            vto.addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
                @Override
                public void onGlobalLayout() {
                    emitter.getViewTreeObserver().removeGlobalOnLayoutListener(this);
                    new ParticleSystem(getOwnerActivity(), 100, R.drawable.confeti2, 3000)
                            .setAcceleration(0.00013f, 90)
                            .setSpeedByComponentsRange(0f, 0f, 0.05f, 0.1f)
                            .setFadeOut(200, new AccelerateInterpolator())
                            .setParentViewGroup(awardHolder)
                            .emitWithGravity(emitter, Gravity.BOTTOM, 30);

                    new ParticleSystem(getOwnerActivity(), 100, R.drawable.confeti3, 3000)
                            .setAcceleration(0.00013f, 90)
                            .setSpeedByComponentsRange(0f, 0f, 0.05f, 0.1f)
                            .setFadeOut(200, new AccelerateInterpolator())
                            .setParentViewGroup(awardHolder)
                            .emitWithGravity(emitter, Gravity.BOTTOM, 30);
                }
            });
        }
    }
}

from leonids.

plattysoft avatar plattysoft commented on September 22, 2024

this should have been fixed with #58

from leonids.

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.