我正在做一个简单的聊天应用程序,我想在编写消息时在 edittext 上显示笑脸。
我有这个来确定哪些字符将通过 ImageSpan 替换为 Image (仅当在 EditText 上插入笑脸字符时才调用此方法):
for (index = start; index < start+num_chars; index++) {
if (index + 1 > editable.length())
continue;
if(emoticons.containsKey(editable.subSequence(index, index + 1).toString())){
int length=1;
Drawable drawable = context.getResources().getDrawable(emoticons.get(editable.subSequence(index, index + 1).toString()));
Bitmap bitmap = ((BitmapDrawable) drawable).getBitmap();
int size=Utils.GetDipsFromPixel(context, (int)(textSize*1.3));
Drawable d = new BitmapDrawable(Bitmap.createScaledBitmap(bitmap, size, size, true));
int dWidth = d.getIntrinsicWidth();
int dHeight = d.getIntrinsicHeight();
d.setBounds(0 , -dHeight, dWidth, 0);
ImageSpan span;
span = new ImageSpan(d,ImageSpan.ALIGN_BASELINE);
editable.setSpan(span, index, index + length,Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
index += length - 1;
}
}
我正在使用 SPAN_EXCLUSIVE_EXCLUSIVE 标签来设置跨度,但是我在使用 swiftkey 键盘时遇到问题,因为当我在编辑文本中插入笑脸时,我在 imageSpan 之后写的所有内容都保留在图像下方(如 SPAN_EXCLUSIVE_INCLUSIVE)。使用Android默认键盘我没有这个问题。
我只希望 Whatsapp 应用程序与 EditText 上的表情相同。
有什么建议么?我必须对我的代码做任何更改吗?
编辑:“可编辑”变量被传递给方法。它是 txtMessage.getText() 值,其中 txtMessage 是 EditText。
谢谢!
编辑:只跨越一部分代码!这在多行中效果很好!我认为问题在于使用 Drawable->Bitmap->ResizedBitmap->Drawable。
public static final HashMap<String, Integer> emoticons = new HashMap();
static {
emoticons.put("\ue415", R.drawable.e415);
emoticons.put("\ue056", R.drawable.e056);
emoticons.put("\ue057", R.drawable.e057);
...
public static Spannable getSmiledText(Context context, Spannable editable,
int start, int num_chars, float textSize) {
int index;
for (index = start; index < start + num_chars; index++) {
if (index + 1 > editable.length())
continue;
if (EmojiLayout.emoticons.containsKey(editable.subSequence(index,
index + 1).toString())) {
int length = 1;
Bitmap smiley = BitmapFactory.decodeResource(context.getResources(), ((Integer) EmojiLayout.emoticons.get(editable.subSequence(index,
index + 1).toString())));
int size = Utils.GetDipsFromPixel(context,
(int) (textSize * 1.37));
Bitmap scaledbmp=Bitmap.createScaledBitmap(
smiley, size, size, false);
ImageSpan span;
span = new ImageSpan(scaledbmp);
Log.d("EmojiLayout", "Index: " + String.valueOf(index) + "To: "
+ String.valueOf(index + length));
editable.setSpan(span, index, index + length,
Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
index += length - 1;
}
}
return editable;
}