美文网首页个人项目实践
Android:在setCompoundDrawables中,进

Android:在setCompoundDrawables中,进

作者: 不知鸟 | 来源:发表于2017-07-04 20:54 被阅读0次

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中,进

    本文链接:https://www.haomeiwen.com/subject/dcnxhxtx.html