-1

情况是当按下按钮增加分数时,我希望分数闪烁或脉动一秒钟。我已经研究过,但还没有找到答案。我必须将数字设为图像吗?我想让 0 闪烁。这是按钮代码的示例:

<TextView
            android:id="@+id/team_a_score"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:fontFamily="sans-serif-light"
            android:gravity="center"
            android:paddingBottom="24dp"
            android:text="0"
            android:textColor="#000000"
            android:textSize="56sp" />
4

1 回答 1

0
Button b1 = findViewById(R.id.my_button);

TextView tv = findViewById(R.id.team_a_score);

Animation anim = new AlphaAnimation(0.0f, 1.0f);
anim.setDuration(40); //You can manage the time of the blink with this parameter
anim.setStartOffset(10);
anim.setRepeatMode(Animation.REVERSE);
anim.setRepeatCount(Animation.INFINITE);

b1.setOnClickListener(new View.OnClickListener() {

@Override
public void onClick(View view) {
    tv.startAnimation(anim);
  }
});

乐意效劳。尝试更改持续时间和值以获得所需的结果。

于 2018-02-11T18:10:58.453 回答