Home
last modified time | relevance | path

Searched refs:showContractedChild (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationContentView.java198 boolean showContractedChild = showContractedChild(); in selectLayout()
199 if (showContractedChild != mContractedVisible || force) { in selectLayout()
201 runSwitchAnimation(showContractedChild); in selectLayout()
203 mContractedChild.setVisibility(showContractedChild ? View.VISIBLE : View.INVISIBLE); in selectLayout()
204 mContractedChild.setAlpha(showContractedChild ? 1f : 0f); in selectLayout()
205 mExpandedChild.setVisibility(showContractedChild ? View.INVISIBLE : View.VISIBLE); in selectLayout()
206 mExpandedChild.setAlpha(showContractedChild ? 0f : 1f); in selectLayout()
209 mContractedVisible = showContractedChild; in selectLayout()
212 private void runSwitchAnimation(final boolean showContractedChild) { in runSwitchAnimation() argument
219 .alpha(showContractedChild ? 1f : 0f) in runSwitchAnimation()
[all …]