Is there any way, in code, to make a button flash continually and then stop flashing when pressed?
android - How can I make a button flash?
45.3k Views Asked by ron At
2
There are 2 best solutions below
0

You can use this code and as well as you can also decide the blink timing of button via mAnimation.setDuration(200);.The code is as follows.
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
select=(Button)findViewById(R.id.bSelect);
Animation mAnimation = new AlphaAnimation(1, 0);
mAnimation.setDuration(200);
mAnimation.setInterpolator(new LinearInterpolator());
mAnimation.setRepeatCount(Animation.INFINITE);
mAnimation.setRepeatMode(Animation.REVERSE);
select.startAnimation(mAnimation);
select.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
v.clearAnimation();
}
});
}
There are several, depending on what kind of flashing you mean. You can, for example, use alpha animation and start it as your button first appears. And when the user clicks button, in your
OnClickListener
just doclearAnimation()
.Example: