Exemplo n.º 1
0
 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);
 }
Exemplo n.º 2
0
            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);
                }
            }
Exemplo n.º 3
0
            //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();
 }