Widget - FAB Alpha Animation

Anmol dwivedi
0

_fab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
     AlphaAnimation animation1 = new AlphaAnimation(1, 0);
            animation1.setDuration(1000);
            animation1.setStartOffset(1000);
            animation1.setFillAfter(true);
            _fab.startAnimation(animation1);
   }
 });

Post a Comment

0 Comments
* Please Don't Spam Here. All the Comments are Reviewed by Admin.
Post a Comment (0)
Our website uses cookies to enhance your experience. Learn More
Accept !