android – Drawable.createFromResourceStream()中的异常 – 仅限HTC?
作者:互联网
我发布了一个IME(软键盘)应用程序,我只收到HTC手机的崩溃报告.这是堆栈跟踪:
java.lang.NullPointerException
at android.graphics.BitmapFactory.decodeResourceStream(BitmapFactory.java:465)
at android.graphics.drawable.Drawable.createFromResourceStream(Drawable.java:697)
at android.graphics.drawable.Drawable.createFromResourceStream(Drawable.java:666)
at com.comet.android.keyboard.util.Util.getBitmapDrawable(MyFile.java:416)
...
这是我对Drawable.createFromResourceStream()的调用
drawable = Drawable.createFromResourceStream(context.getResources(), null, stream, null);
其中context是InputMethodService和stream的子类是FileInputStream或AssetInputStream(我已经尝试了两者).资源文件是已编译的NinePatchDrawable.我已经确认流不是null.
重复:这个错误只发生在运行各种版本Android OS的某些HTC手机(包括Evo)上.
有没有人经历过这个和/或知道如何修复它?
提前致谢,
巴里
附:奇怪的是,崩溃线465不在任何版本的BitmapFactory.java中的崩溃方法BitmapFactory.decodeResourceStream()内,因此HTC必须使用修改后的代码.
解决方法:
找到解决此问题的方法,您可以用以下方法替换对Drawable.createFromResourceStream的调用:
// set options to resize the image
Options opts = new BitmapFactory.Options();
opts.inDensity = 160;
Drawable drawable = null;
Bitmap bm = BitmapFactory.decodeFile(file.getAbsolutePath(), opts);
if (bm != null) {
drawable = new BitmapDrawable(context.getResources(), bm);
}
这仅适用于文件.
标签:nine-patch,android-assets,android,htc-android 来源: https://codeday.me/bug/20190902/1793952.html