java
sql
html
php
ajax
ruby-on-rails
regex
mysql
objective-c
eclipse
silverlight
flash
html5
json
algorithm
oracle
tsql
apache
php5
asp
I guess bRegister is your view over which you want your animation to work. IF this is so, you have correctly set the animation with this view using bRegister.setAnimation(bRegisterAnimation);
but you haven't started the animation using startAnimation(). Try it once
I had a similar experience when trying to implement animations on my Android device, which was one that I borrowed from my sister. I tried getting animation to work on it for a whole day until I finally gave up. Days later was when I realized...... all animations had been turned off in the settings -_- lol so to avoid wasting your time like me it might be wise to check your settings first.
You need to call bRegister.startAnimation(bRegisterAnimation). Also, you don't need to call setAnimation(). If you're trying to make a simple fade animation, you might try using this instead:
bRegister.startAnimation(bRegisterAnimation)
setAnimation()
bRegister.startAnimation(AnimationUtils.loadAnimation( getBaseContext(), android.R.anim.fade_in));