获取图像缓存时出现NullPointerException

时间:2014-04-08 15:55:04

标签: android caching nullpointerexception

我使用Android's BitmapFun sample code中的类并且遇到了某些设备的问题(我的应用并没有在我测试的所有设备上崩溃,但在其他人身上崩溃)。< / p>

注意:发生这种情况的Android版本是:2.3.3-2.3.7,4.0.3-4.0.4,4.1和4.2

在我的Google开发者控制台中,我获得了以下堆栈跟踪:

java.lang.RuntimeException: Unable to start activity 
ComponentInfo{com.question/com.question.ui.question}: java.lang.NullPointerException
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2077)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2104)
at android.app.ActivityThread.access$600(ActivityThread.java:134)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1247)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:154)
at android.app.ActivityThread.main(ActivityThread.java:4624)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:809)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:576)
at dalvik.system.NativeStart.main(Native Method)
Caused by: java.lang.NullPointerException
at com.question.util.ImageCache.getDiskCacheDir(ImageCache.java:568)
at com.question.util.ImageCache$ImageCacheParams.<init>(ImageCache.java:488)
at com.question.ui.question.onCreate(question.java:58)
at android.app.Activity.performCreate(Activity.java:4479)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1050)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2041)
... 11 more

我调查了这个并找到了question with the same problem。我已经做了一些调整,从答案中提出,同样的问题仍然存在。

导致问题的代码:

public static File getDiskCacheDir(Context context, String uniqueName) {
    // Check if media is mounted or storage is built-in, if so, try and use external cache dir
    // otherwise use internal cache dir
    final String cachePath =
            Environment.MEDIA_MOUNTED.equals(Environment.getExternalStorageState()) ||
            !isExternalStorageRemovable() ? getExternalCacheDir(context).getPath() :
                            context.getCacheDir().getPath();

    return new File(cachePath + File.separator + uniqueName);
}

如果有人知道这里的问题并且可以解释,那会有所帮助!

1 个答案:

答案 0 :(得分:1)

我遇到了这个问题,发现我的AVD仿真器配置不正确。具体来说,空指针是由于缺少定义并分配给虚拟设备的存储空间。

要解决此问题,请使用SD卡存储创建新的或编辑您的Android虚拟设备。在Eclipse中:选择Andoid虚拟设备管理器ICON =&gt; Create New =&gt; ...在页面底部附近有一个名为SD Card的部分:输入SD卡大小的值。

以下是a link,其中介绍了如何使用适当的存储配置AVD仿真器。

这是a link,提供了一个很好的技术定义,为什么会生成NullPointerException。