2016-07-24 5 views
0

У меня есть эта странная ошибка, когда я больше не могу загружать текстуры. Активы, которые я использовал в порядке, но когда я пытаюсь добавить новые активы, он бросает мне это:Ошибка загрузки текстуры Android Studio

E/AndroidRuntime: FATAL EXCEPTION: GLThread 9855 
Process: com.NeverMind.MainClass.android, PID: 18482 
com.badlogic.gdx.utils.GdxRuntimeException: Couldn't load file: bg.png 
    at com.badlogic.gdx.graphics.Pixmap.<init>(Pixmap.java:140) 
    at com.badlogic.gdx.graphics.TextureData$Factory.loadFromFile(TextureData.java:98) 
    at com.badlogic.gdx.graphics.Texture.<init>(Texture.java:100) 
    at com.badlogic.gdx.graphics.Texture.<init>(Texture.java:92) 
    at com.NeverMind.DontFall.android.MainClass.create(MainClass.java:200) 
    at com.badlogic.gdx.backends.android.AndroidGraphics.onSurfaceChanged(AndroidGraphics.java:241) 
    at android.opengl.GLSurfaceView$GLThread.guardedRun(GLSurfaceView.java:1520) 
    at android.opengl.GLSurfaceView$GLThread.run(GLSurfaceView.java:1248) 
Caused by: java.io.IOException: Error loading pixmap: decoder init failed for stream 
    at com.badlogic.gdx.graphics.g2d.Gdx2DPixmap.<init>(Gdx2DPixmap.java:57) 
    at com.badlogic.gdx.graphics.Pixmap.<init>(Pixmap.java:138) 
    at com.badlogic.gdx.graphics.TextureData$Factory.loadFromFile(TextureData.java:98)  
    at com.badlogic.gdx.graphics.Texture.<init>(Texture.java:100)  
    at com.badlogic.gdx.graphics.Texture.<init>(Texture.java:92)  
    at com.NeverMind.DontFall.android.MainClass.create(MainClass.java:200)  
    at com.badlogic.gdx.backends.android.AndroidGraphics.onSurfaceChanged(AndroidGraphics.java:241)  
    at android.opengl.GLSurfaceView$GLThread.guardedRun(GLSurfaceView.java:1520)  
    at android.opengl.GLSurfaceView$GLThread.run(GLSurfaceView.java:1248)  

I didn't do anything stupid. I also tried to trick him and put the new texture with the name of an old one and it didn't work. This is the first time this happens, I have thousands of lines in the code. 
+0

Не видя ни одного вашего кода, я уверен, что эта угроза может быть вам полезна. http://stackoverflow.com/questions/25426087/e-androidruntime-fatal-exception-main – Danieboy

+0

@ Dan C, вы могли бы показать раздел кода, вызывающий исключение? – munyul

+1

Поведение и заброшенные исключения звучат очень близко к этому: http://badlogicgames.com/forum/viewtopic.php?f=11&t=18368. Ознакомьтесь с тремя предложенными там предложениями (в частности, № 3) –

ответ

0

Проблема была с битовой глубиной. Он должен быть меньше.

Смежные вопросы