のねのBlog

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

2014-04-08から1日間の記事一覧

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 + "crea…

An error occured while executing doInBackground()

303 /** 304 * Creates a new asynchronous task. This constructor must be invoked on the UI thread. 305 */ 306 public AsyncTask() { 307 mWorker = new WorkerRunnable<Params, Result>() { 308 public Result call() throws Exception { 309 mTaskInvoked.set(true); </params,>…