//获取资源图片
Drawable leftDrawable = getResources().getDrawable(R.drawable.comment_parise);
//设置图片的尺寸,奇数位置后减前得到宽度,偶数位置后减前得到高度。
leftDrawable.setBounds(0, 0, 30, 30);
//设置图片在TextView中的位置
tvMain.setCompoundDrawables(leftDrawable, null, null, null);
时间: 2024-10-07 17:39:02