gpt4 book ai didi

java - 如何在android延迟后显示按钮文本

转载 作者:搜寻专家 更新时间:2023-11-01 08:24:02 24 4
gpt4 key购买 nike

我创建了新的自定义 Button 类,我想实现,每当用户进行任何 Activity 时,我的通用按钮都希望从圆形扩展到默认宽度。展开时我想隐藏按钮文本一段时间,直到按钮动画完成。

请检查我下面的代码:

 private void animateMe(Context context){
final String btnText = this.getText().toString();
final FIButton fiButton = this;
fiButton.setText("");

new Handler().postDelayed(new Runnable() {

@Override
public void run() {
fiButton.setText(btnText);
}

},500);


Animation animation = AnimationUtils.loadAnimation(context,
R.anim.expand);
super.startAnimation(animation);
}

最佳答案

轻松通过

ViewCompat.animate(fiButton ).setStartDelay(500).alpha(1).setDuration(700).setInterpolator(new DecelerateInterpolator(1.2f)).start();

请注意,您必须将 fiButton alpha 设置为零 android:alpha="0.0"在你的 xml 或创建 View 中

此行将使您的 View 在 500 毫秒后的 700 毫秒内从 0 变为 1。

关于java - 如何在android延迟后显示按钮文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47173283/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com