动态给textView加图片

Drawable img = layout.getResources().getDrawable(R.drawable.icon);
// 调用setCompoundDrawables时,必须调用Drawable.setBounds()方法,否则图片不显示
img.setBounds(0, 0, img.getMinimumWidth(), img.getMinimumHeight());
textView.setCompoundDrawables(img, null, null, null); //演示设置左图标     可以动态设置上下左右

上一篇:android中listview滑动卡顿的原因


下一篇:关于iScroll在安卓移动端/chrome模拟移动端上下滑动卡顿问题处理!!!!真实可靠!!!已解决!!!