summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/app/AlbumSetPage.java
diff options
context:
space:
mode:
authorRay Chen <raychen@google.com>2011-08-30 16:34:18 +0800
committerRay Chen <raychen@google.com>2011-08-31 11:42:04 +0800
commit83d4691e8dae4e6fe9090f71283b96ee2b911236 (patch)
tree9873e1034534e5e5aa263febbbaddd69cb8bb7bc /src/com/android/gallery3d/app/AlbumSetPage.java
parent3f414cbd44b45e98262c1ac214f93f7e6bbee1ce (diff)
downloadandroid_packages_apps_Snap-83d4691e8dae4e6fe9090f71283b96ee2b911236.tar.gz
android_packages_apps_Snap-83d4691e8dae4e6fe9090f71283b96ee2b911236.tar.bz2
android_packages_apps_Snap-83d4691e8dae4e6fe9090f71283b96ee2b911236.zip
Debugging 5166199. Add log messages for analysis.
Change-Id: I1786e540b5bf19460dcca06acd8a77c9287593f8
Diffstat (limited to 'src/com/android/gallery3d/app/AlbumSetPage.java')
-rw-r--r--src/com/android/gallery3d/app/AlbumSetPage.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/com/android/gallery3d/app/AlbumSetPage.java b/src/com/android/gallery3d/app/AlbumSetPage.java
index 958f9b21d..097057293 100644
--- a/src/com/android/gallery3d/app/AlbumSetPage.java
+++ b/src/com/android/gallery3d/app/AlbumSetPage.java
@@ -224,6 +224,7 @@ public class AlbumSetPage extends ActivityState implements
}
public void doCluster(int clusterType) {
+ Log.v(TAG, "doCluster: " + clusterType);
String basePath = mMediaSet.getPath().toString();
String newPath = FilterUtils.switchClusterPath(basePath, clusterType);
Bundle data = new Bundle(getData());
@@ -268,6 +269,7 @@ public class AlbumSetPage extends ActivityState implements
@Override
public void onPause() {
super.onPause();
+ Log.v(TAG, "onPause");
mIsActive = false;
mActionModeHandler.pause();
mAlbumSetDataAdapter.pause();
@@ -281,6 +283,7 @@ public class AlbumSetPage extends ActivityState implements
@Override
public void onResume() {
super.onResume();
+ Log.v(TAG, "onResume");
mIsActive = true;
setContentPane(mRootPane);
mAlbumSetDataAdapter.resume();