you can use
android:drawableLeft="@drawable/your_drawable"
on your EditText in xml.
And from java you can change it like this:
Drawable img = getContext().getResources().getDrawable( R.drawable.your_other_drawable );
txtVw.setCompoundDrawablesWithIntrinsicBounds( img, null, null, null );
, , / , .