xml - How to create custom edittext with button in android? -
how can create kind of edittext button on android.
i've done relative layout won't presentable.
thanks ahead.
use android:drawableright property of edittext.code as
<edittext android:id="@+id/edit_text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:hint="@string/enter_the_value" android:drawableright="@drawable/ic_launcher" />
Comments
Post a Comment