I'm trying to create to make this form in Android

You can set background drawable to achieve.either create custom drawable with shape or use background images and put it in the layout xml android:background="@drawable/text_bg"
create an "testing_gradient.xml" file in /res/drawable
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@color/grey">
<shape
android:shape="rectangle"
android:thickness="10dp"></shape>
</item>
<item
android:drawable="@color/white"
android:left="50dp">
<shape android:shape="rectangle"></shape>
</item>
</layer-list>
apply the code in layout xml file
<EditText
android:background="@drawable/testing_gradient"
android:layout_width="match_parent"
android:textColor="@color/black"
android:text="User input"
android:paddingLeft="60dp"
android:layout_height="60dp"/>
final result

Again, you can add more layer to input more images

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With