再一次,我一直试图在网上找到答案。但是我似乎无法找到一个与我的问题相匹配的。
基本上,我有一个来自我正在使用的 API 的表情符号列表,我试图让这些图像显示在 TextView 中,但它只是不起作用。这些图像在我的回收视图中显示为蓝色方块,直到我向上滚动到它们然后它们出现。这是我的代码,我不确定我在做什么是正确的。我不记得为什么我做了我所做的,因为它是旧代码,我正在尝试重构它。任何人都可以帮忙吗?
这是代码:
@Override
public void onBindViewHolder(ViewHolder holder, int position) {
Posts posts = mPost.getItem(position);
emoticons = mEmoticon.getItems();
String message = null;
String emoMessage = null;
if (posts.getPost() != null) {
if (posts.getPost().getMessage() != null) {
message = posts.getPost().getMessage();
emoMessage = message;
if (emoticons != null) {
for (Emoticons emoticon : this.emoticons) {
if (message.contains(emoticon.getEmoticon().getCode())) {
emoMessage = message.replaceAll(Constants.EMO_REGEX, emoticon.getEmoticon().getUrl());
}
}
}
holder.mPostTextView.setText(Html.fromHtml(emoMessage, new Html.ImageGetter() {
@Override
public Drawable getDrawable(final String source) {
Target loadTarget;
loadTarget = new Target() {
@Override
public void onBitmapLoaded(Bitmap bitmap, Picasso.LoadedFrom from) {
try {
StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
StrictMode.setThreadPolicy(policy);
URL url = new URL(source);
InputStream is = url.openStream();
Bitmap b = BitmapFactory.decodeStream(is);
mDrawable = new BitmapDrawable(Resources.getSystem(), b);
mDrawable.setBounds(0, 0, mDrawable.getIntrinsicWidth() + 25, mDrawable.getIntrinsicHeight() + 25);
} catch (IOException e) {
e.printStackTrace();
}
}
@Override
public void onBitmapFailed(Drawable errorDrawable) {
}
@Override
public void onPrepareLoad(Drawable placeHolderDrawable) {
}
};
Picasso.with(mContext).load(source).into(loadTarget);
return mDrawable;
}
}, null);
}