web-dev-qa-db-ja.com

android-ボタンを点滅させるにはどうすればよいですか?

コード内で、ボタンを継続的に点滅させ、押されたときに点滅を停止する方法はありますか?

41
ron

点滅の種類に応じて、いくつかあります。たとえば、アルファアニメーションを使用して、ボタンが最初に表示されたときに開始できます。ユーザーがボタンをクリックすると、OnClickListenerclearAnimation()を実行します。

例:

public void onCreate(Bundle savedInstanceState) {
    final Animation animation = new AlphaAnimation(1, 0); // Change alpha from fully visible to invisible
    animation.setDuration(500); // duration - half a second
    animation.setInterpolator(new LinearInterpolator()); // do not alter animation rate
    animation.setRepeatCount(Animation.INFINITE); // Repeat animation infinitely
    animation.setRepeatMode(Animation.REVERSE); // Reverse animation at the end so the button will fade back in
    final Button btn = (Button) findViewById(R.id.your_btn);
    btn.startAnimation(animation);
    btn.setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(final View view) {
            view.clearAnimation();
        }
    });
}
117
Alex Orlov

このコードを使用できます。また、mAnimation.setDuration(200);を使用してボタンの点滅タイミングを決定することもできます。コードは次のとおりです。

@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();


        }
    });

}
13
Deepak Sharma

Frame Animation を使用することもできます

1
bivy