Android UI
Han_JX_DUT
这个作者很懒,什么都没留下…
展开
-
可自定义 View 的 Toast
CustomToastgithub: https://github.com/hanjx-dut/CustomToastAndroid 11 中将禁止使用自定义 View 的 Toast一种简单的解决思路是通过在 DecorView 中动态添加删除 View,加入淡入、淡出、滑动的动画效果,实现自定义 View 的 Toast 效果。本文是简单实现。普通 Toast 样式:CustomToast、SimpleToast类似系统通知的横幅效果:NotificationToast引入依赖al原创 2020-06-28 17:14:23 · 280 阅读 · 0 评论 -
Android 倒计时控件 CountDownView
一个精简的倒计时控件,使用 Canvas.drawArc()绘制。实现了倒计时的圆环扫过效果。代码见https://github.com/hanjx-dut/CountDownView可自定义的属性 <declare-styleable name="CountDownView"> <attr name="duration" format="integer"/> <!-- 总时间 --> <attr name="refre原创 2020-06-03 14:06:33 · 738 阅读 · 0 评论