如何使用 android 中的按钮创建自定义编辑文本?

How to create custom edittext with button in android?

如何使用 android 上的按钮创建这种编辑文本。

我做了相对布局,但它看起来不太像。

先谢谢了。

将EditText.Code的android:drawableRight属性用作

<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" />