Loading libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/BubbleDebugConfig.java +18 −5 Original line number Diff line number Diff line Loading @@ -77,12 +77,25 @@ public class BubbleDebugConfig { && bubble == selected); String arrow = isSelected ? "=>" : " "; sb.append(String.format("%s Bubble{act=%12d, showInShade=%d, key=%s}", BadgedImageView iconView = bubble.getIconView(); if (iconView != null) { sb.append(String.format( "%s Bubble{act=%12d, showInShade=%d, key=%s, vis=%d, alpha=%f}", arrow, bubble.getLastActivity(), (bubble.showInShade() ? 1 : 0), bubble.getKey(), iconView.getVisibility(), iconView.getAlpha())); } else { sb.append(String.format( "%s Bubble{act=%12d, showInShade=%d, key=%s, icon=null}", arrow, bubble.getLastActivity(), (bubble.showInShade() ? 1 : 0), bubble.getKey())); } } if (i != bubbles.size() - 1) { sb.append("\n"); } Loading libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/BubbleExpandedView.java +6 −0 Original line number Diff line number Diff line Loading @@ -1217,5 +1217,11 @@ public class BubbleExpandedView extends LinearLayout { pw.print(prefix); pw.print(" stackView: "); pw.println(mStackView); pw.print(prefix); pw.print(" contentVisibility: "); pw.println(mIsContentVisible); pw.print(prefix); pw.print(" isAnimating: "); pw.println(mIsAnimating); if (mTaskView != null) { pw.print(prefix); pw.print(" tv-alpha: "); pw.println(mTaskView.getAlpha()); pw.print(prefix); pw.print(" tv-viewVis: "); pw.println(mTaskView.getVisibility()); } pw.print(prefix); pw.print(" v-alpha: "); pw.println(getAlpha()); pw.print(prefix); pw.print(" v-viewVis: "); pw.println(getVisibility()); } } Loading
libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/BubbleDebugConfig.java +18 −5 Original line number Diff line number Diff line Loading @@ -77,12 +77,25 @@ public class BubbleDebugConfig { && bubble == selected); String arrow = isSelected ? "=>" : " "; sb.append(String.format("%s Bubble{act=%12d, showInShade=%d, key=%s}", BadgedImageView iconView = bubble.getIconView(); if (iconView != null) { sb.append(String.format( "%s Bubble{act=%12d, showInShade=%d, key=%s, vis=%d, alpha=%f}", arrow, bubble.getLastActivity(), (bubble.showInShade() ? 1 : 0), bubble.getKey(), iconView.getVisibility(), iconView.getAlpha())); } else { sb.append(String.format( "%s Bubble{act=%12d, showInShade=%d, key=%s, icon=null}", arrow, bubble.getLastActivity(), (bubble.showInShade() ? 1 : 0), bubble.getKey())); } } if (i != bubbles.size() - 1) { sb.append("\n"); } Loading
libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/BubbleExpandedView.java +6 −0 Original line number Diff line number Diff line Loading @@ -1217,5 +1217,11 @@ public class BubbleExpandedView extends LinearLayout { pw.print(prefix); pw.print(" stackView: "); pw.println(mStackView); pw.print(prefix); pw.print(" contentVisibility: "); pw.println(mIsContentVisible); pw.print(prefix); pw.print(" isAnimating: "); pw.println(mIsAnimating); if (mTaskView != null) { pw.print(prefix); pw.print(" tv-alpha: "); pw.println(mTaskView.getAlpha()); pw.print(prefix); pw.print(" tv-viewVis: "); pw.println(mTaskView.getVisibility()); } pw.print(prefix); pw.print(" v-alpha: "); pw.println(getAlpha()); pw.print(prefix); pw.print(" v-viewVis: "); pw.println(getVisibility()); } }