帮助类

在代码中为TextView添加icon

2017-10-17  本文已影响5人  根艮哏艮根

在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);

上一篇下一篇

猜你喜欢

热点阅读