Skip to content
Snippets Groups Projects
Commit 4d298503 authored by Lyn Han's avatar Lyn Han Committed by Android (Google) Code Review
Browse files

Merge "Set NSSL debug lines to different colors"

parents 9b59c503 eb34ad14
No related branches found
No related tags found
No related merge requests found
......@@ -632,10 +632,15 @@ public class NotificationStackScrollLayout extends ViewGroup implements Dumpable
if (DEBUG) {
int y = mTopPadding;
mDebugPaint.setColor(Color.RED);
canvas.drawLine(0, y, getWidth(), y, mDebugPaint);
y = getLayoutHeight();
mDebugPaint.setColor(Color.YELLOW);
canvas.drawLine(0, y, getWidth(), y, mDebugPaint);
y = getHeight() - getEmptyBottomMargin();
mDebugPaint.setColor(Color.GREEN);
canvas.drawLine(0, y, getWidth(), y, mDebugPaint);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment