Searched refs:startY (Results 1 – 5 of 5) sorted by relevance
/development/samples/browseable/Notifications/Wearable/src/com.example.android.support.wearable.notifications/ |
D | AnimatedNotificationDisplayActivity.java | 72 float startY = mImageView.getTranslationY(); in createNextAnimation() local 75 float distance = (float) Math.sqrt(Math.pow(endX - startX, 2) + Math.pow(endY - startY, 2)); in createNextAnimation() 79 PropertyValuesHolder.ofFloat("translationY", startY, endY)); in createNextAnimation()
|
/development/samples/ApiDemos/src/com/example/android/apis/animation/ |
D | BouncingBalls.java | 87 float startY = newBall.getY(); in onTouchEvent() local 92 ValueAnimator bounceAnim = ObjectAnimator.ofFloat(newBall, "y", startY, endY); in onTouchEvent() 120 startY); in onTouchEvent()
|
/development/samples/devbytes/animation/ListViewItemAnimations/src/com/example/android/listviewitemanimations/ |
D | ListViewItemAnimations.java | 327 private void moveView(View view, float startX, float endX, float startY, float endY, in moveView() argument 339 if (startY != endY) { in moveView() 340 … ObjectAnimator anim = ObjectAnimator.ofFloat(view, View.TRANSLATION_Y, startY, endY); in moveView() 346 TranslateAnimation translator = new TranslateAnimation(startX, endX, startY, endY); in moveView()
|
/development/samples/CubeLiveWallpaper/src/com/example/android/livecubes/cube1/ |
D | CubeWallpaper1.java | 224 float startY = newy1 / (4 - newz1 / 400); in drawLine() local 228 c.drawLine(startX, startY, stopX, stopY, mPaint); in drawLine()
|
/development/samples/training/InteractiveChart/src/com/example/android/interactivechart/ |
D | InteractiveLineGraphView.java | 811 int startY = (int) (mSurfaceSizeBuffer.y * (AXIS_Y_MAX - mScrollerStartViewport.bottom) / ( in fling() local 816 startY, in fling()
|