Guest User

Untitled

a guest
Apr 28th, 2012
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. Android Scroller Issue
  2. mScroller.startScroll(0, 0, 100, 0, 1000);
  3.  
  4. <?xml version="1.0" encoding="utf-8"?>
  5. <translate
  6. xmlns:android="http://schemas.android.com/apk/res/android"
  7. android:duration="700"
  8. android:fromXDelta="0"
  9. android:interpolator="@android:anim/accelerate_decelerate_interpolator"
  10. android:toXDelta="100" >
  11.  
  12. Animation animation = AnimationUtils.loadAnimation(mContext, R.anim.translate_menu_animation);
  13. animation.start();
Advertisement
Add Comment
Please, Sign In to add comment