This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lastUpload":"2020-05-28T02:47:20.786Z","extensionVersion":"v3.4.3"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import android.content.res.Resources; | |
import android.graphics.Bitmap; | |
import android.graphics.BitmapFactory; | |
import android.graphics.Color; | |
import android.graphics.Rect; | |
import android.graphics.drawable.NinePatchDrawable; | |
import android.util.DisplayMetrics; | |
import java.io.BufferedInputStream; | |
import java.io.File; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Date: 2015-12-17 | |
Title: Emoji表情传输和保存:对非BMP范围的Unicode字符的处理 | |
Category: PHP | |
Tags: Emoji, Unicode, PHP, Lua | |
Slug: php_emoji_to_unicode | |
参考: | |
[UTF-16](https://en.wikipedia.org/wiki/UTF-16) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public void loadImage(final MainChatImgModel models, final ImageView imageView, final ProgressBarCircularIndeterminate progressBar, final RelativeLayout loadingPanel){ | |
progressBar.setVisibility(View.VISIBLE); | |
loadingPanel.setVisibility(View.VISIBLE); | |
glide.load(models.getData().get(0).getSrc()).diskCacheStrategy(DiskCacheStrategy.ALL).listener(new RequestListener<String, GlideDrawable>() { | |
@Override | |
public boolean onException(Exception e, String model, Target<GlideDrawable> target, boolean isFirstResource) { | |
return false; | |
} | |
@Override |