Searched defs:showContractedChild (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationContentView.java156 boolean showContractedChild = showContractedChild();
157 if (showContractedChild != mContractedVisible || force) {
159 runSwitchAnimation(showContractedChild);
161 mContractedChild.setVisibility(showContractedChild ? View.VISIBLE : View.INVISIBLE);
162 mContractedChild.setAlpha(showContractedChild ? 1f : 0f);
163 mExpandedChild.setVisibility(showContractedChild ? View.INVISIBLE : View.VISIBLE);
164 mExpandedChild.setAlpha(showContractedChild ? 0f : 1f);
167 mContractedVisible = showContractedChild;
170 private void runSwitchAnimation(final boolean showContractedChild) { argument
200 private boolean showContractedChild() { method in class:NotificationContentView
[all...]

Completed in 28 milliseconds