I tried to put an animation in my Android activity meanwhile the result isn't what I expected.
In my XML, I got a ProgressBar which visibility is set to GONE.
I would like display the progressbar from to top of the parent layout by translation. I did somethiong like that : progressBar.setVisibility(View.VISIBLE); progressBar.startAnimation(…);
The problem is that, by the setVisibility, the height don't "expand". It's just fully load and there isn't any slide to the view at the bottom of the ProgressBar.
( https://docs.google.com/drawings/d/1UC57IIDN6d7Zg1wG4Nz4JfocgUxhYJCHlwVzMpFziK4/edit?pli=1 )
Any solution ?
Thanks