登录 注册
当前位置:主页 > 资源下载 > 50 > SecretTextView-使TextView具有淡入淡出效果.zip下载

SecretTextView-使TextView具有淡入淡出效果.zip下载

  • 更新:2024-11-27 15:54:50
  • 大小:23KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

应用Secret 中的效果实现的文字淡入淡出的效果,不同的文字淡入淡出的效果、速度是不同的。项目地址:https://github.com/matthewrkula/SecretTextView效果图:如何使用SecretTextView继承了android.widget.TextView, 所以其支持android.widget.TextView的所有特性。1. xml布局中创建2. 获得并设置参数secretTextView = (SecretTextView)this.findViewById(R.id.textview); secretTextView.setIsVisible(true);//设置控件是否显示,默认是不显示的 secretTextView.setDuration(3000);//设置淡入淡出动画的时间3. 开启淡入淡出动画secretTextView.show();//开启淡入动画 secretTextView.hide();//开启淡出动画或者使用secretTextView.toggle()在淡入、淡出间切换。