在xml中设置TextView的icon
<TextView
android:id="@+id/tv_type"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableLeft="@mipmap/notice"
android:drawablePadding="5dp"
/>
在代码中设置TextView的icon
Drawable drawable =context.getResources().getDrawable(R.mipmap.notice_g);
drawable.setBounds(0, 0, drawable.getMinimumWidth(),drawable.getMinimumHeight());
//设置左侧的图标
mTextView.setCompoundDrawables(drawable, null, null, null);
网友评论