仿今日头条点赞喷射表情动画
主要用于点赞防抖事件的交互提示,这里只提供交互View 防抖功能可以根据Rx自行实现
compile 'com.sum.slike:library:0.2.1'
自定义属性名字 | 参数含义 |
---|---|
eruption_element_amount | 一次喷射的element数量 |
max_eruption_total | 最大同时喷射次数 |
show_emoji | 是否显示Emoji表情喷射动画 |
show_text | 是否显示Combo文字 |
BitmapProvider.Provider provider = new BitmapProvider.Builder(this).build();
superLikeLayout.setProvider(provider);
superLikeLayout.launch(x, y);
DrawableArray
是喷射Emoji的Drawable。NumberDrawableArray
是连续点赞数字Drawable(0~10)LevelDrawableArray
是连续点赞等级Drawable(目前分为3个等级 010, 1020, 20~30+)
BitmapProvider.Provider provider = new BitmapProvider.Builder(this)
.setDrawableArray(new int[]{R.mipmap.emoji_1, R.mipmap.emoji_2, R.mipmap.emoji_3, R.mipmap.emoji_4, R.mipmap.emoji_5, R.mipmap.emoji_6,
R.mipmap.emoji_7, R.mipmap.emoji_8, R.mipmap.emoji_9, R.mipmap.emoji_10, R.mipmap.emoji_11, R.mipmap.emoji_12, R.mipmap.emoji_13,
R.mipmap.emoji_14, R.mipmap.emoji_15, R.mipmap.emoji_16, R.mipmap.emoji_17, R.mipmap.emoji_18, R.mipmap.emoji_19, R.mipmap.emoji_20})
.setNumberDrawableArray(new int[]{R.mipmap.multi_digg_num_0, R.mipmap.multi_digg_num_1, R.mipmap.multi_digg_num_2, R.mipmap.multi_digg_num_3,
R.mipmap.multi_digg_num_4, R.mipmap.multi_digg_num_5, R.mipmap.multi_digg_num_6, R.mipmap.multi_digg_num_7,
R.mipmap.multi_digg_num_8, R.mipmap.multi_digg_num_9})
.setLevelDrawableArray(new int[]{R.mipmap.multi_digg_word_level_1, R.mipmap.multi_digg_word_level_2, R.mipmap.multi_digg_word_level_3})
.build();
superLikeLayout.setProvider(provider);
superLikeLayout.launch(x, y);
MIT License
Copyright (c) Qiu800820
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.