Giter VIP home page Giter VIP logo

Comments (4)

chrisboyle avatar chrisboyle commented on June 1, 2024

Two more reports last month. :-( Should take another look at this...

from sgtpuzzles.

steveliles avatar steveliles commented on June 1, 2024

Hey Chris, I ran into this too - at exactly the same point (canvas.drawColor(Color.WHITE) in my case).

It only happens to me under API level 7 - exact same code at API level 8 and above runs fine.

I reduced it down to the simplest test-case I could produce, and managed to figure out that the following code exhibits the crashing behaviour in API level 7 and below, but works fine in 8+:

Canvas _c = new Canvas();
_c.drawColor(Color.WHITE);

The following code does not crash in level 7 and below, or 8+:

Canvas _c = new Canvas();
Bitmap _b = Bitmap.createBitmap(350, 350, Bitmap.Config.ARGB_8888);
_c.setBitmap(_b);
_c.drawColor(Color.WHITE);

When you look at it like that, it seems fairly obvious that my problem lay in the fact that the canvas wasn't really initialised correctly (ie., it had no idea what size it was). Hope this is helpful to you.

from sgtpuzzles.

chrisboyle avatar chrisboyle commented on June 1, 2024

Awesome, thank you! :-) I never even thought of trying this on lower API levels (silly, I know). This is very helpful and I will look into how we could be hitting this situation as soon as possible.

from sgtpuzzles.

chrisboyle avatar chrisboyle commented on June 1, 2024

At some point I added a dummy bitmap to initialise the canvas with (GameView.java:85); we haven't had backing-less Canvases around for some time.

from sgtpuzzles.

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.