Android:在setCompoundDrawables中,进行图片缩放设置

Calculate image size when using setCompoundDrawables for EditText

Drawable dr = this.getResources().getDrawable(R.drawable.warning);//获得图片资源路径
Bitmap bitmap = ((BitmapDrawable) dr).getBitmap();//
Drawable d = new BitmapDrawable(this.getResources(), Bitmap.createScaledBitmap(bitmap, 35, 35, true));

txtValue.setCompoundDrawablesWithIntrinsicBounds(d, null, null, null);

你可能感兴趣的:(Android:在setCompoundDrawables中,进行图片缩放设置)