package com.hpw.myapp.ui.publish;
import java.util.HashMap;
public class DefXhsEmoticons {
public static String[] xhsEmoticonArray = {
"01bless.gif,[保佑]",
"02crash.gif,[崩溃]",
"03despise.gif,[鄙视]",
"04shut.gif,[闭嘴]",
"05upset.gif,[不高兴]",
"06unreliable.gif,[不给力]",
"07disdain.gif,[不屑]",
"08lol.gif,[呲牙]",
"09cry.gif,[大哭]",
"10unlucky.gif,[倒霉]",
"11showoff.gif,[嘚瑟]",
"12wicked.gif,[调皮]",
"13redpacket.gif,[发红包]",
"14sleepy.gif,[犯困]",
"15anger.gif,[愤怒]",
"16clouds.gif,[浮云]",
"17touch.gif,[感动]",
"18seduce.gif,[勾引]",
"19grimace.gif,[鬼脸]",
"20shy.gif,[害羞]",
"21cold.gif,[寒]",
"22sweat.gif,[汗]",
"23reliable.gif,[很给力]",
"24insist.gif,[坚持]",
"25amazed.gif,[惊讶]",
"26reluctantly.gif,[囧]",
"27happy.gif,[开心]",
"28cute.gif,[可爱]",
"29cool.gif,[酷]",
"30mania.gif,[狂躁]",
"31tears.gif,[泪奔]",
"32busy.gif,[忙]",
"33worship.gif,[膜拜]",
"34kiss.gif,[亲亲]",
"35shame.gif,[糗]",
"36injured.gif,[伤不起]",
"37pleasure.gif,[偷着乐]",
"38vomit.gif,[吐]",
"39yy.gif,[歪歪]",
"40night.gif,[晚安]",
"41smile.gif,[微笑]",
"42chagrin.gif,[委屈]",
"43bored.gif,[无聊]",
"44beat.gif,[想打人]",
"45touch.gif,[心动]",
"46broken.gif,[心碎]",
"47doubt.gif,[疑惑]",
"48faint.gif,[晕]"};
public static final HashMap<String, String> sXhsEmoticonHashMap = new HashMap<>();
static {
sXhsEmoticonHashMap.put("[保佑]", "01bless.gif");
sXhsEmoticonHashMap.put("[崩溃]", "02crash.gif");
sXhsEmoticonHashMap.put("[鄙视]", "03despise.gif");
sXhsEmoticonHashMap.put("[闭嘴]", "04shut.gif");
sXhsEmoticonHashMap.put("[不高兴]", "05upset.gif");
sXhsEmoticonHashMap.put("[不给力]", "06unreliable.gif");
sXhsEmoticonHashMap.put("[不屑]", "07disdain.gif");
sXhsEmoticonHashMap.put("[呲牙]", "08lol.gif");
sXhsEmoticonHashMap.put("[大哭]", "09cry.gif");
sXhsEmoticonHashMap.put("[倒霉]", "10unlucky.gif");
sXhsEmoticonHashMap.put("[嘚瑟]", "11showoff.gif");
sXhsEmoticonHashMap.put("[调皮]", "12wicked.gif");
sXhsEmoticonHashMap.put("[发红包]", "13redpacket.gif");
sXhsEmoticonHashMap.put("[犯困]", "14sleepy.gif");
sXhsEmoticonHashMap.put("[愤怒]", "15anger.gif");
sXhsEmoticonHashMap.put("[浮云]", "16clouds.gif");
sXhsEmoticonHashMap.put("[感动]", "17touch.gif");
sXhsEmoticonHashMap.put("[勾引]", "18seduce.gif");
sXhsEmoticonHashMap.put("[鬼脸]", "19grimace.gif");
sXhsEmoticonHashMap.put("[害羞]", "20shy.gif");
sXhsEmoticonHashMap.put("[寒]", "21cold.gif");
sXhsEmoticonHashMap.put("[汗]", "22sweat.gif");
sXhsEmoticonHashMap.put("[很给力]", "23reliable.gif");
sXhsEmoticonHashMap.put("[坚持]", "24insist.gif");
sXhsEmoticonHashMap.put("[惊讶]", "25amazed.gif");
sXhsEmoticonHashMap.put("[囧]", "26reluctantly.gif");
sXhsEmoticonHashMap.put("[开心]", "27happy.gif");
sXhsEmoticonHashMap.put("[可爱]", "28cute.gif");
sXhsEmoticonHashMap.put("[酷]", "29cool.gif");
sXhsEmoticonHashMap.put("[狂躁]", "30mania.gif");
sXhsEmoticonHashMap.put("[泪奔]", "31tears.gif");
sXhsEmoticonHashMap.put("[忙]", "32busy.gif");
sXhsEmoticonHashMap.put("[膜拜]", "33worship.gif");
sXhsEmoticonHashMap.put("[亲亲]", "34kiss.gif");
sXhsEmoticonHashMap.put("[糗]", "35shame.gif");
sXhsEmoticonHashMap.put("[伤不起]", "36injured.gif");
sXhsEmoticonHashMap.put("[偷着乐]", "37pleasure.gif");
sXhsEmoticonHashMap.put("[吐]", "38vomit.gif");
sXhsEmoticonHashMap.put("[歪歪]", "39yy.gif");
sXhsEmoticonHashMap.put("[晚安]", "40night.gif");
sXhsEmoticonHashMap.put("[微笑]", "41smile.gif");
sXhsEmoticonHashMap.put("[委屈]", "42chagrin.gif");
sXhsEmoticonHashMap.put("[无聊]", "43bored.gif");
sXhsEmoticonHashMap.put("[想打人]", "44beat.gif");
sXhsEmoticonHashMap.put("[心动]", "45touch.gif");
sXhsEmoticonHashMap.put("[心碎]", "46broken.gif");
sXhsEmoticonHashMap.put("[疑惑]", "47doubt.gif");
sXhsEmoticonHashMap.put("[晕]", "48faint.gif");
}
}