-
-
Save anonymous/fdb75c5abdd7b122d8f0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
| xmlns:tools="http://schemas.android.com/tools" | |
| android:layout_width="match_parent" | |
| android:layout_height="match_parent" | |
| android:orientation="vertical" | |
| tools:context=".CountriesActivity" > | |
| <TextView | |
| android:layout_width="match_parent" | |
| android:layout_height="wrap_content" | |
| android:text="Country" /> | |
| <AutoCompleteTextView | |
| android:id="@+id/countries_list" | |
| android:layout_width="match_parent" | |
| android:layout_height="wrap_content" /> | |
| <TextView | |
| android:layout_width="match_parent" | |
| android:layout_height="wrap_content" | |
| android:text="City" /> | |
| <AutoCompleteTextView | |
| android:id="@+id/cities_list" | |
| android:layout_width="match_parent" | |
| android:layout_height="wrap_content" /> | |
| </LinearLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment