public void OnLoaderReset(Android.Support.V4.Content.Loader p0) { // This is called when the last Cursor provided to onLoadFinished() // above is about to be closed. We need to make sure we are no // longer using it. _adapter.SwapCursor(null); }
public void OnLoadFinished(Android.Support.V4.Content.Loader loader, Java.Lang.Object data) { // Swap the new cursor in. (The framework will take care of closing the // old cursor once we return.) _adapter.SwapCursor(data.JavaCast <ICursor>()); // The list should now be shown. if (IsResumed) { SetListShown(true); } else { SetListShownNoAnimation(true); } }
//public void OnLoaderReset(Android.Support.V4.Content.Loader loader) //{ // throw new NotImplementedException(); //} public void OnLoadFinished(Android.Support.V4.Content.Loader loader, Java.Lang.Object data) { //throw new NotImplementedException(); }
public void OnLoaderReset(Android.Support.V4.Content.Loader loader) { throw new NotImplementedException(); }