你好,我是Android新手,我试图让一个数字在脉冲增加时闪烁或闪烁

时间:2018-02-11 18:08:19

标签: android xml textview android-textattributes

情况是按下按钮增加分数我希望分数闪烁或脉冲一秒钟。 我已经研究过,但还没有找到答案。我必须将数字设为图像吗?我想让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" />

1 个答案:

答案 0 :(得分: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);
  }
});

乐意为您提供帮助。尝试更改持续时间和值以获得所需的结果。