I want to place imageview inside edittext. Would it be possible? I checked \"evernote\" application, and it was able to put photo on the edittext part. I want to make my app
you can use following property of editext
to set image in editext
android:drawableTop=""
android:drawableBottom=""
android:drawableRight=""
android:drawableLeft=""
android:drawableEnd=""
like this
or you can set drabble programatically like this
editText.setCompoundDrawablesWithIntrinsicBounds(0, 0, R.drawable.drawableRight, 0);