我使用这种方法,如果文件是xml,它每次都有效,如果是任何其他格式,它就会失败。
Bitmap bm = BitmapFactory.decodeResource(getResources(), drawableId);
下面的将有效,因为它有xml,
Bitmap bm = BitmapFactory.decodeResource(getResources(), R.drawable.ic_launcher_background);
在drawable文件夹上有test.PNG图像,它不能工作:
Bitmap bm = BitmapFactory.decodeResource(getResources(), R.drawable.test);
此代码中缺少什么来支持解码其他格式?
我不是专门在测试图像上缩放位图,它也很小。
这是logcat:
E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.example.ram.myapplication, PID: 12759
java.lang.NullPointerException
at android.graphics.Canvas.throwIfCannotDraw(Canvas.java:1083)
at android.graphics.Canvas.drawBitmap(Canvas.java:1139)
at com.example.ram.myapplication.MySurfaceView.drawSomething(MySurfaceView.java:96)
at com.example.ram.myapplication.MySurfaceView$1.surfaceCreated(MySurfaceView.java:69)
at android.view.SurfaceView.updateWindow(SurfaceView.java:608)
at android.view.SurfaceView.access$000(SurfaceView.java:96)
at android.view.SurfaceView$3.onPreDraw(SurfaceView.java:185)
at android.view.ViewTreeObserver.dispatchOnPreDraw(ViewTreeObserver.java:847)
at android.view.ViewRootImpl.performTraversals(ViewRootImpl.java:1994)
at android.view.ViewRootImpl.doTraversal(ViewRootImpl.java:1063)
at android.view.ViewRootImpl$TraversalRunnable.run(ViewRootImpl.java:5993)
at android.view.Choreographer$CallbackRecord.run(Choreographer.java:761)
at android.view.Choreographer.doCallbacks(Choreographer.java:574)
at android.view.Choreographer.doFrame(Choreographer.java:544)
at android.view.Choreographer$FrameDisplayEventReceiver.run(Choreographer.java:747)
at android.os.Handler.handleCallback(Handler.java:733)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:136)
at android.app.ActivityThread.main(ActivityThread.java:5584)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:515)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1268)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1084)
at dalvik.system.NativeStart.main(Native Method)
非常感谢你的时间。
编辑: 我不得不改变目录。找到某处 - 无法使用Drawable文件夹。所以不得不使用原始文件夹。
答案 0 :(得分:1)
或者,您可以尝试将png图像放入某个资源文件夹,然后访问以下内容。
try {
AssetManager manager = getAssets();
InputStream open = manager.open("ic_launcher_background.png");
Bitmap bitmap = BitmapFactory.decodeStream(open);
} catch (IOException e) {
e.printStackTrace();
}
答案 1 :(得分:1)
使用BitmapFactory.Options
BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = false;
Bitmap bitmap= BitmapFactory.decodeResource(getResources(), R.drawable.test, options);
如果options.inJustDecodeBounds = false;
如果设置为true,解码器将返回null(无位图),但仍将设置out ...字段,允许调用者查询位图而无需为其像素分配内存。
希望它能起作用!!