Skip to content

Instantly share code, notes, and snippets.

@tugcearar
Created September 10, 2020 15:11
Show Gist options
  • Save tugcearar/b1754a4161b808ac963c08e06ed1e8b3 to your computer and use it in GitHub Desktop.
Save tugcearar/b1754a4161b808ac963c08e06ed1e8b3 to your computer and use it in GitHub Desktop.
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="20dp"
android:minWidth="25px"
android:minHeight="25px">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textMultiLine"
android:scrollHorizontally="false"
android:lines="6"
android:hint="Address"
android:id="@+id/txtSearch">
</EditText>
<Button
android:text="Search"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/btnSearch" />
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment