Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
try to explain your problem in more detail and post some code samples that you have tried – sunil Jul 12 '12 at 13:24

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.