summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/com/android/deskclock/timer/Timers.java2
-rw-r--r--src/com/android/deskclock/widget/sgv/ReorderHelper.java2
-rw-r--r--src/com/android/deskclock/widget/sgv/StaggeredGridView.java8
3 files changed, 6 insertions, 6 deletions
diff --git a/src/com/android/deskclock/timer/Timers.java b/src/com/android/deskclock/timer/Timers.java
index d835f9c57..756a6a5b8 100644
--- a/src/com/android/deskclock/timer/Timers.java
+++ b/src/com/android/deskclock/timer/Timers.java
@@ -21,7 +21,7 @@ import java.util.Iterator;
public class Timers {
// Logging shared by TimerReceiver and TimerAlertFullScreen
- public static final boolean LOGGING = false;
+ public static final boolean LOGGING = true;
// Private actions processed by the receiver
public static final String START_TIMER = "start_timer";
diff --git a/src/com/android/deskclock/widget/sgv/ReorderHelper.java b/src/com/android/deskclock/widget/sgv/ReorderHelper.java
index 493d251a1..91fd4ea75 100644
--- a/src/com/android/deskclock/widget/sgv/ReorderHelper.java
+++ b/src/com/android/deskclock/widget/sgv/ReorderHelper.java
@@ -18,7 +18,7 @@ import com.android.deskclock.widget.sgv.StaggeredGridView.ReorderListener;
*/
public final class ReorderHelper {
- private static final String TAG = "Keep";
+ private static final String TAG = "DeskClock";
/**
* Constant to indicate an unsupported reordering position.
diff --git a/src/com/android/deskclock/widget/sgv/StaggeredGridView.java b/src/com/android/deskclock/widget/sgv/StaggeredGridView.java
index 765d55a75..aa44df4d7 100644
--- a/src/com/android/deskclock/widget/sgv/StaggeredGridView.java
+++ b/src/com/android/deskclock/widget/sgv/StaggeredGridView.java
@@ -79,7 +79,7 @@ import java.util.Map;
*/
public class StaggeredGridView extends ViewGroup {
- private static final String TAG = "Keep-" + StaggeredGridView.class.getSimpleName();
+ private static final String TAG = "Clock-" + StaggeredGridView.class.getSimpleName();
/*
* There are a few things you should know if you're going to make modifications
@@ -2209,7 +2209,7 @@ public class StaggeredGridView extends ViewGroup {
mItemBottoms[k] = mItemBottoms[k] - highestValue + offset;
mItemTops[k] = mItemBottoms[k];
- Log.v(TAG, "Adjusting to offset = mItemBottoms[" + k + "]: " + mItemBottoms[k]);
+ // Log.v(TAG, "Adjusting to offset = mItemBottoms[" + k + "]: " + mItemBottoms[k]);
}
}
@@ -2401,13 +2401,13 @@ public class StaggeredGridView extends ViewGroup {
childRight = childLeft + child.getMeasuredWidth();
}
- Log.v(TAG, "[layoutChildren] height: " + childHeight
+ /* Log.v(TAG, "[layoutChildren] height: " + childHeight
+ " top: " + childTop + " bottom: " + childBottom
+ " left: " + childLeft
+ " column: " + col
+ " position: " + position
+ " id: " + lp.id);
-
+*/
child.layout(childLeft, childTop, childRight, childBottom);
if (lp.id == mFocusedChildIdToScrollIntoView) {
child.requestFocus();