android - How to show layout moving from left to right with slow speed -
how animate layout moving
left right
on button click. should invisible on button click should come out left direction cover screen
you going want layout view's xml how you'd want show in it's final stage. set visibility gone. create translateanimation
translateanimation anim = new translateanimation(-100f, 0f, 0f, 0f); // might need review docs anim.setduration(1000); // set how long want animation viewyouwanttoanimate.setanimation(anim); viewyouwanttoanimate.setvisibility(view.visible);
Comments
Post a Comment