I have the TextInputLayout which by default have similar paddings at the text/title/error but I need to have different paddings for each of them.
        <com.google.android.material.textfield.TextInputLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
            <com.google.android.material.textfield.TextInputEditText
                android:layout_width="match_parent"
                android:background="@drawable/base_exit_text"
                android:paddingLeft="16dp"
                android:paddingTop="22dp"
                android:paddingRight="16dp"
                android:paddingBottom="16dp"
                android:layout_height="wrap_content"/>
        </com.google.android.material.textfield.TextInputLayout>
What I have:
What I need:


 
    