summaryrefslogtreecommitdiffstats
path: root/photoviewer
diff options
context:
space:
mode:
authorPaul Westbrook <pwestbro@google.com>2012-10-24 08:22:18 -0700
committerPaul Westbrook <pwestbro@google.com>2012-10-26 22:39:00 -0700
commit939ce1b0bcd1ded7e1dc8c36eb89dcd4d891bd12 (patch)
tree820b9ec97672f1bc9b4fa5665da770e8796a9fd1 /photoviewer
parent690abee69959184f0525e7d4ea2630926e66055f (diff)
downloadandroid_frameworks_ex-939ce1b0bcd1ded7e1dc8c36eb89dcd4d891bd12.tar.gz
android_frameworks_ex-939ce1b0bcd1ded7e1dc8c36eb89dcd4d891bd12.tar.bz2
android_frameworks_ex-939ce1b0bcd1ded7e1dc8c36eb89dcd4d891bd12.zip
Restart loader on attachment cursor updates
cherry-pick of https://googleplex-android-review.googlesource.com/#/c/245483/ Bug: 7403076 Change-Id: I620403db9f7304e99ca4e9c0c58a439e277225d0
Diffstat (limited to 'photoviewer')
-rw-r--r--photoviewer/src/com/android/ex/photo/fragments/PhotoViewFragment.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/photoviewer/src/com/android/ex/photo/fragments/PhotoViewFragment.java b/photoviewer/src/com/android/ex/photo/fragments/PhotoViewFragment.java
index 2e99bd8..2ecbeb7 100644
--- a/photoviewer/src/com/android/ex/photo/fragments/PhotoViewFragment.java
+++ b/photoviewer/src/com/android/ex/photo/fragments/PhotoViewFragment.java
@@ -272,7 +272,7 @@ public class PhotoViewFragment extends Fragment implements
}
break;
case LOADER_ID_THUMBNAIL:
- if (isPhotoBound()) {
+ if (isPhotoBound()) {
// There is need to do anything with the thumbnail image, as the full size
// image is being shown.
mPhotoPreviewAndProgress.setVisibility(View.GONE);
@@ -346,6 +346,10 @@ public class PhotoViewFragment extends Fragment implements
// we're not in the foreground; reset our view
resetViews();
} else {
+ if (!isPhotoBound()) {
+ // Restart the loader
+ getLoaderManager().restartLoader(LOADER_ID_THUMBNAIL, null, this);
+ }
mCallback.onFragmentVisible(this);
}
}