Android 中 Toast 消息的动画
Animation for Toast messages in Android
我想问一下是否可以为 Android 制作动画吐司消息。例如,用户注册成功后,从顶部出现toast消息,2秒后消失。我坚信这些小细节可以让应用看起来很棒。
toast 从顶部出现,一段时间后消失,因为 android 中没有这种功能,您必须使用第三方库 Crounton.Using Crounton 这种功能实现。
https://github.com/keyboardsurfer/Crouton
这里是图书馆的link,你也可以在图书馆找到一些样本。
无法制作自定义吐司动画,使用库存 Android 吐司 class。
Stock style toasts (ones added to the WindowManager and not to a
ViewGroup) are limited to four system animations and will not accept
animations from your project.
所以实现动画或自定义 Toast 消息的唯一方法 是创建您自己的自定义 Toast class,或使用一些库,例如这个 SuperToasts library
我想问一下是否可以为 Android 制作动画吐司消息。例如,用户注册成功后,从顶部出现toast消息,2秒后消失。我坚信这些小细节可以让应用看起来很棒。
toast 从顶部出现,一段时间后消失,因为 android 中没有这种功能,您必须使用第三方库 Crounton.Using Crounton 这种功能实现。
https://github.com/keyboardsurfer/Crouton
这里是图书馆的link,你也可以在图书馆找到一些样本。
无法制作自定义吐司动画,使用库存 Android 吐司 class。
Stock style toasts (ones added to the WindowManager and not to a ViewGroup) are limited to four system animations and will not accept animations from your project.
所以实现动画或自定义 Toast 消息的唯一方法 是创建您自己的自定义 Toast class,或使用一些库,例如这个 SuperToasts library