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

1 2

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DismissViewButton.java 113 float translationX = ((ViewGroup) mParent).getTranslationX();
115 outRect.left += translationX;
116 outRect.right += translationX;
  /frameworks/support/v4/ics/android/support/v4/view/
ViewPropertyAnimatorCompatICS.java 33 public static void translationX(View view, float value) {
34 view.animate().translationX(value);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/widget/
FloatingActionButtonController.java 133 int translationX = getTranslationXForAlignment(align);
138 .translationX(translationX + offsetX)
144 mFloatingActionButtonContainer.setTranslationX(translationX + offsetX);
202 * @return The translationX for the given alignment.
  /packages/apps/Launcher3/src/com/android/launcher3/allapps/
DefaultAppSearchController.java 195 final int translationX = Utilities.pxFromDp(SEARCH_TRANSLATION_X_DP,
199 mSearchBarContainerView.setTranslationX(translationX);
202 .translationX(0)
215 .translationX(-translationX)
227 final int translationX = Utilities.pxFromDp(SEARCH_TRANSLATION_X_DP,
233 .translationX(0)
249 mSearchButtonView.setTranslationX(-translationX);
252 .translationX(0)
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherViewPropertyAnimator.java 200 mViewPropertyAnimator.translationX(mTranslationX);
231 public LauncherViewPropertyAnimator translationX(float value) {
AppsCustomizePagedView.java     [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherViewPropertyAnimator.java 201 mViewPropertyAnimator.translationX(mTranslationX);
235 public LauncherViewPropertyAnimator translationX(float value) {
Workspace.java     [all...]
  /frameworks/support/v4/java/android/support/v4/view/
ViewPropertyAnimatorCompat.java 65 public void translationX(ViewPropertyAnimatorCompat vpa, View view, float value);
96 public void translationX(ViewPropertyAnimatorCompat vpa, View view, float value) {
376 public void translationX(ViewPropertyAnimatorCompat vpa, View view, float value) {
377 ViewPropertyAnimatorCompatICS.translationX(view, value);
715 * This method will cause the View's <code>translationX</code> property to be animated to the
723 public ViewPropertyAnimatorCompat translationX(float value) {
726 IMPL.translationX(this, view, value);
    [all...]
  /frameworks/base/core/java/android/transition/
ChangeTransform.java 411 private static void setTransforms(View view, float translationX, float translationY,
414 view.setTranslationX(translationX);
425 public final float translationX;
435 translationX = view.getTranslationX();
446 setTransforms(view, translationX, translationY, translationZ, scaleX, scaleY,
456 return thatTransform.translationX == translationX &&
  /packages/apps/Calculator/src/com/android/calculator2/
Calculator.java 281 final float translationX = (1.0f - textScale) *
290 ObjectAnimator.ofFloat(textView, View.TRANSLATION_X, translationX, 0.0f),
  /packages/apps/Messaging/src/com/android/messaging/ui/conversationlist/
ConversationListSwipeHelper.java 193 final float translationX = mListItemView.getSwipeTranslationX();
196 if (translationX != 0) {
198 translationX > 0 ? SWIPE_DIRECTION_RIGHT : SWIPE_DIRECTION_LEFT;
367 final float translationX = itemView.getSwipeTranslationX();
370 && velocityX > 0 != translationX > 0) { // Right direction.
371 duration = calculateTranslationDuration(translationX, velocityX);
387 * Create and start an animator that animates the given view's translationX
406 final float translationX = mListItemView.getSwipeTranslationX();
410 && (velocityX > 0) == (translationX > 0) // Right direction.
411 && Math.abs(translationX) >
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
TwoPaneLayout.java 356 * @param deltaX The ending translationX to translate all of the panes except for drawer.
357 * @param drawerDeltaX the ending translationX to translate the drawer. This is necessary
373 * Animate the panes' translationX to their corresponding deltas. Refer to
377 mConversationFrame.animate().translationX(deltaX);
380 .translationX(deltaX)
383 mFoldersView.animate().translationX(drawerDeltaX);
500 final float translationX = percentDragged *
502 translatePanes(translationX, 0 /* drawerDeltaX */, false /* animate */);
    [all...]
  /frameworks/base/core/java/android/view/
ViewPropertyAnimator.java 598 * This method will cause the View's <code>translationX</code> property to be animated to the
605 public ViewPropertyAnimator translationX(float value) {
611 * This method will cause the View's <code>translationX</code> property to be animated by the
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/alarms/
AlarmActivity.java 430 final float translationX = Math.max(mSnoozeButton.getLeft() - alarmRight, 0)
432 getAlarmBounceAnimator(translationX, translationX < 0.0f ?
439 final float translationX = Math.max(mDismissButton.getLeft() - alarmRight, 0)
441 getAlarmBounceAnimator(translationX, translationX < 0.0f ?
538 private ValueAnimator getAlarmBounceAnimator(float translationX, final int hintResId) {
540 View.TRANSLATION_X, mAlarmButton.getTranslationX(), translationX, 0.0f);
  /frameworks/base/core/java/android/widget/
StackView.java 352 PropertyValuesHolder translationX = PropertyValuesHolder.ofFloat("translationX", transX);
358 translationY, translationX);
    [all...]
  /packages/apps/ExactCalculator/src/com/android/calculator2/
Calculator.java 598 final float translationX = (1.0f - textScale) *
607 ObjectAnimator.ofFloat(textView, View.TRANSLATION_X, translationX, 0.0f),
    [all...]
  /packages/apps/Camera2/src/com/android/camera/widget/
FilmstripView.java 501 final float translationX =
505 (int) (drawArea.centerX() + (mLeftPosition - refCenter + translationX) * scale);
    [all...]
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
RecyclerView.java     [all...]
  /libcore/benchmarks/src/benchmarks/regression/
R.java     [all...]
  /prebuilts/sdk/current/support/v13/
android-support-v13.jar 
  /prebuilts/sdk/current/support/v4/
android-support-v4.jar 
  /prebuilts/sdk/current/support/v7/recyclerview/libs/
android-support-v7-recyclerview.jar 
  /external/robolectric/lib/main/
android.jar 
  /prebuilts/sdk/13/
android.jar 

Completed in 837 milliseconds

1 2