のねのBlog

パソコンの問題や、ソフトウェアの開発で起きた問題など書いていきます。よろしくお願いします^^。

Cursor window could not be created from binder

    129     private CursorWindow(Parcel source) {
    130         mStartPos = source.readInt();
    131         mWindowPtr = nativeCreateFromParcel(source);
    132         if (mWindowPtr == 0) {
    133             throw new CursorWindowAllocationException("Cursor window could not be "
    134                     + "created from binder.");
    135         }
    136         mName = nativeGetName(mWindowPtr);
    137         mCloseGuard.open("close");
    138     }