-
Notifications
You must be signed in to change notification settings - Fork 71
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
Setting background drawable #5
Comments
I am having the same issue |
También tengo el mismo problema. |
Same issue here, the background is black |
#helpinghands init { |
是的 我也有相同的问题 即使将background属性去掉了之后依旧如此 but whatever thanks guys |
This works if you do not have something on top of the An alternative would be to change the
|
This is how I achieved transparent background. ParticleView particleView = findViewById(R.id.particles_view);
particleView.setZOrderOnTop(true);
SurfaceHolder sfhTrackHolder = particleView.getHolder();
sfhTrackHolder.setFormat(PixelFormat.TRANSPARENT); |
First of all I would like to thank you for this amazing library, it's SO easy to use and the results are marvellous. It's also very easily customizable. Now for this issue, when I try to set a background drawable the particles don't appear. I tried setting the background colour to transparent and have a drawable somewhere behind, but instead of transparent, it's black. Do you have any idea how to solve this? It would be greatly appreciated!
The text was updated successfully, but these errors were encountered: