I have an EditText
and a Button
set next to each other on the same horizontal line. It looks great, except when the user enters a lot of text, the
you can define size of your edittext as it shows above
android:minWidth="80dp"
android:maxWidth="80dp"
or
android:layout_width="60dp"
or
you can apply a background image of size you want but don't forget to define its height and width with wrap_content.
android:layout_width="wrap_content"
android:layout_height="wrap_content"