Searched refs:animations (Results 1 – 5 of 5) sorted by relevance
/development/samples/devbytes/animation/ListViewExpandingCells/src/com/example/android/expandingcells/ |
D | ExpandingListView.java | 265 ArrayList <Animator> animations = new ArrayList<Animator>(); 282 animations.add(getAnimation(v, delta, delta)); 287 animations.add(getAnimation(v, delta, delta)); 294 animations.add(getAnimation(view, -yTranslateTop, yTranslateBottom)); 297 animations.add(ObjectAnimator.ofFloat(view.findViewById(R.id.expanding_layout), 306 s.playTogether(animations); 476 ArrayList <Animator> animations = new ArrayList<Animator>(); 481 animations.add(getAnimation(v, diff, diff)); 487 animations.add(getAnimation(view, yTranslateTop, -yTranslateBottom)); 490 animations.add(ObjectAnimator.ofFloat(expandingLayout, View.ALPHA, 1, 0)); [all …]
|
/development/samples/devbytes/animation/CardFlip/src/com/example/android/cardflip/ |
D | CardFlip.java | 244 List<Animator> animations = new ArrayList<Animator>(); in rotateCards() local 250 animations.add(cardView.getRotationAnimator(i, corner, isRotatingOut, false)); in rotateCards() 260 set.playTogether(animations); in rotateCards() 275 List<Animator> animations = new ArrayList<Animator>(); in rotateCardsFullRotation() local 280 animations.add(cardView.getFullRotationAnimator(i, corner, false)); in rotateCardsFullRotation() 288 set.playTogether(animations); in rotateCardsFullRotation()
|
/development/samples/devbytes/animation/ListViewCellInsertion/src/com/example/android/insertingcells/ |
D | InsertionListView.java | 132 ArrayList<Animator> animations = new ArrayList<Animator>(); in addRow() 147 animations.add(textAlphaAnimator); in addRow() 179 animations.add(imgViewTranslation); in addRow() 180 animations.add(imgViewScaleAnimator); in addRow() 205 animations.add(animation); in addRow() 215 animations.add(animation); in addRow() 260 animations.add(animation); in addRow() 269 set.playTogether(animations); in addRow()
|
/development/samples/browseable/TextSwitcher/ |
D | _index.jd | 10 in and out fade animations.
|
/development/samples/browseable/Interpolator/ |
D | _index.jd | 8 This sample demonstrates the use of animation interpolators and path animations for
|