我在 sdcard 中有一个图像,我想在多行 editText 中将它用作 Drawable。现在,我成功地展示了它。
Bitmap bitmap=Bitmap.createScaledBitmap(BitmapFactory.decodeFile(path), 120, 120, false);
final Drawable draw=new BitmapDrawable(bitmap);
draw.setBounds(0,0,draw.getIntrinsicWidth(),draw.getIntrinsicHeight());
complaintText.setCompoundDrawablePadding(5);
complaintText.setCompoundDrawables(null,draw,null,null);
但我想显示在多行编辑文本的左上角。我会很感激任何帮助