Inserting imageview inside edittext android

前端 未结 3 1661
南旧
南旧 2021-01-17 08:49

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

3条回答
  •  栀梦
    栀梦 (楼主)
    2021-01-17 09:14

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

提交回复
热议问题