I have a nav drawer which contains a TableLayout
with a few TableRows
, each simply containing a TextView
. Upon the drawer opening, Id like to do a very small sliding in animation of the TableRows/TextViews, where they each slide in a tad later than the previous, very similar to the drawer found in the Sprig app:
https://play.google.com/store/apps/details?id=com.eatsprig&hl=en
I know that usually for a simple animation I would create a xml file in /res/anim/ and then load the animation with AnimationUtils.loadAnimation(context, R.anim.myanim)
and then start the animation with the .startAnimation()
method, but im not sure how to go about doing an animation as described above. Does anyone know how to do this?