HomeSort by relevance Sort by last modified time
    Searched defs:translationY (Results 1 - 25 of 62) sorted by null

1 2 3

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
FooterViewButton.java 57 float translationY = ((ViewGroup) mParent).getTranslationY();
60 outRect.top += translationY;
61 outRect.bottom += translationY;
StatusBarMobileView.java 95 float translationY = getTranslationY();
98 outRect.top += translationY;
99 outRect.bottom += translationY;
StatusBarWifiView.java 159 float translationY = getTranslationY();
162 outRect.top += translationY;
163 outRect.bottom += translationY;
StatusBarIconView.java 841 float translationY = getTranslationY();
844 outRect.top += translationY;
845 outRect.bottom += translationY;
  /packages/apps/DeskClock/src/com/android/deskclock/widget/toast/
SnackbarSlidingBehavior.java 58 float translationY = 0f;
60 translationY = Math.min(translationY, dependency.getY() - child.getBottom());
62 child.setTranslationY(translationY);
  /packages/apps/Launcher3/src/com/android/launcher3/anim/
PropertyListBuilder.java 20 public PropertyListBuilder translationY(float value) {
  /frameworks/support/transition/src/androidTest/java/androidx/transition/
ExplodeTest.java 150 float translationY = view.getTranslationY();
159 assertThat(translationY, is(lessThan(0.f)));
161 assertThat(translationY, is(greaterThan(0.f)));
  /frameworks/base/tests/UiBench/src/com/android/test/uibench/
NotificationShadeActivity.java 144 int translationY = expectedHeight - mFullHeight;
145 lastChild.setTranslationY(translationY);
146 float p = - ((float) translationY) / lastChildHeight();
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowRenderNode.java 25 private float translationY;
145 public boolean setTranslationY(float translationY) {
146 this.translationY = translationY;
163 return translationY;
  /frameworks/layoutlib/bridge/src/android/view/
RenderNode_Delegate.java 115 /*package*/ static boolean nSetTranslationY(long renderNode, float translationY) {
117 if (delegate != null && delegate.mTranslationY != translationY) {
118 delegate.mTranslationY = translationY;
177 float translationY = renderNode.getTranslationY();
183 outMatrix.setTranslate(translationX, translationY);
  /frameworks/support/compat/src/main/java/androidx/core/view/
ViewPropertyAnimatorCompat.java 174 * This method will cause the View's <code>translationY</code> property to be animated to the
180 public ViewPropertyAnimatorCompat translationY(float value) {
183 view.animate().translationY(value);
544 * This method will cause the View's <code>translationY</code> property to be animated by the
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherViewPropertyAnimator.java 203 mViewPropertyAnimator.translationY(mTranslationY);
237 public LauncherViewPropertyAnimator translationY(float value) {
  /packages/apps/Launcher3/src/com/android/launcher3/folder/
FolderAnimationManager.java 285 Animator translationY = getAnimator(btv, View.TRANSLATION_Y, yDistance, 0f);
286 translationY.setInterpolator(previewItemInterpolator);
287 play(animatorSet, translationY);
299 translationY.setStartDelay(delay);
303 translationY.setDuration(translationY.getDuration() - delay);
  /frameworks/base/core/java/android/transition/
ChangeTransform.java 413 private static void setTransforms(View view, float translationX, float translationY,
417 view.setTranslationY(translationY);
428 public final float translationY;
438 translationY = view.getTranslationY();
448 setTransforms(view, translationX, translationY, translationZ, scaleX, scaleY,
459 thatTransform.translationY == translationY &&
  /frameworks/base/core/java/android/view/
ViewPropertyAnimator.java 625 * This method will cause the View's <code>translationY</code> property to be animated to the
632 public ViewPropertyAnimator translationY(float value) {
638 * This method will cause the View's <code>translationY</code> property to be animated by the
    [all...]
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowViewTest.java 667 public void translationY() {
  /frameworks/base/core/java/android/widget/
StackView.java 352 PropertyValuesHolder translationY = PropertyValuesHolder.ofFloat("translationY", transY);
357 translationY, translationX);
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternView.java 220 float translationY;
466 cellState.translationY = startTranslationY;
477 cellState.translationY = (1 - t) * startTranslationY + t * endTranslationY;
499 cellState.translationY = endTranslationY;
    [all...]
RecyclerView.java     [all...]
  /packages/apps/Dialer/java/com/android/incallui/answer/impl/
AnswerFragment.java     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
NotificationStackScrollLayout.java     [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
AppTransition.java     [all...]
  /packages/apps/ExactCalculator/src/com/android/calculator2/
Calculator.java     [all...]
  /prebuilts/tools/common/m2/repository/com/nineoldandroids/library/2.4.0/
library-2.4.0.jar 
  /frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
RecyclerView.java     [all...]

Completed in 575 milliseconds

1 2 3