Drawable drawable = getResources().getDrawable(R.drawable.find_zan_noclick);
 //第一0是距左边距离,第二0是距上边距离,25分别是长宽
  drawable.setBounds(0, 0, 25, 25); //图片放在哪边(左边,上边,右边,下边)
  textView.setCompoundDrawables(drawable, null, null, null);
  textView.setCompoundDrawablePadding(10);
  textView.setText("123");