Home
last modified time | relevance | path

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

/packages/apps/Launcher3/quickstep/src/com/android/quickstep/views/
DSplitInstructionsView.java51 public void setValue(SplitInstructionsView splitInstructionsView, float v) {
52 splitInstructionsView.setScaleY(v);
56 public Float get(SplitInstructionsView splitInstructionsView) {
57 return splitInstructionsView.getScaleY();
76 final SplitInstructionsView splitInstructionsView = in getSplitInstructionsView() local
82 splitInstructionsView.init(); in getSplitInstructionsView()
87 splitInstructionsView.forceHasOverlappingRendering(false); in getSplitInstructionsView()
89 dragLayer.addView(splitInstructionsView); in getSplitInstructionsView()
90 return splitInstructionsView; in getSplitInstructionsView()
DRecentsView.java3255 SplitInstructionsView splitInstructionsView = in createInitialSplitSelectAnimation() local
3257 splitInstructionsView.setAlpha(0); in createInitialSplitSelectAnimation()
3258 anim.setViewAlpha(splitInstructionsView, 1, clampToProgress(LINEAR, in createInitialSplitSelectAnimation()
3261 anim.setViewAlpha(splitInstructionsView.getTextView(), 1, clampToProgress(LINEAR, in createInitialSplitSelectAnimation()
3264 anim.addFloat(splitInstructionsView, splitInstructionsView.UNFOLD, 0.1f, 1, in createInitialSplitSelectAnimation()
3268 mSplitSelectStateController.setSplitInstructionsView(splitInstructionsView); in createInitialSplitSelectAnimation()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/util/
DSplitAnimationController.kt237 splitSelectStateController.splitInstructionsView) in createPlaceholderDismissAnim()
248 safeRemoveViewFromDragLayer(launcher, splitSelectStateController.splitInstructionsView) in getShowSplitInstructionsAnim()
249 val splitInstructionsView = SplitInstructionsView.getSplitInstructionsView(launcher) in getShowSplitInstructionsAnim() constant
250 splitSelectStateController.splitInstructionsView = splitInstructionsView in getShowSplitInstructionsAnim()
253 anim.setViewAlpha(splitInstructionsView, 1f, in getShowSplitInstructionsAnim()
257 anim.setViewAlpha(splitInstructionsView!!.textView, 1f, in getShowSplitInstructionsAnim()
261 anim.addFloat(splitInstructionsView, SplitInstructionsView.UNFOLD, 0.1f, 1f, in getShowSplitInstructionsAnim()
270 safeRemoveViewFromDragLayer(launcher, splitSelectStateController.splitInstructionsView) in removeSplitInstructionsView()
DSplitSelectStateController.java698 public void setSplitInstructionsView(SplitInstructionsView splitInstructionsView) { in setSplitInstructionsView() argument
699 mSplitInstructionsView = splitInstructionsView; in setSplitInstructionsView()