TextViewLayout下方的图标下划线

时间:2017-03-07 18:51:58

标签: java android android-studio layout

我想在TextViewLayout上面添加一个下划线,如下图所示:

enter image description here

任何解决方案?

1 个答案:

答案 0 :(得分:1)

试试这个: -

android:drawableLeft="@drawable/imageWillChange"

OR

试试这个: -

Drawable img = getContext().getResources().getDrawable( R.drawable.smiley );
txtVw.setCompoundDrawablesWithIntrinsicBounds( img, null, null, null);
相关问题