2019-10-16 18:37:08 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-09-16 14:14:38 -04:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:background="@color/signal_background_primary"
|
|
|
|
android:orientation="vertical">
|
2019-10-16 18:37:08 -04:00
|
|
|
|
2021-09-16 14:14:38 -04:00
|
|
|
<EditText
|
|
|
|
android:id="@+id/country_search"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:drawableStart="@drawable/ic_menu_search_holo_light"
|
|
|
|
android:hint="@string/country_selection_fragment__search"
|
|
|
|
app:drawableTint="@color/signal_icon_tint_primary" />
|
2019-10-16 18:37:08 -04:00
|
|
|
|
2021-09-16 14:14:38 -04:00
|
|
|
<ListView
|
|
|
|
android:id="@android:id/list"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:choiceMode="singleChoice"
|
|
|
|
android:divider="@color/signal_divider_minor"
|
|
|
|
android:dividerHeight="1dp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@android:id/empty"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/country_selection_fragment__loading_countries"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge" />
|
2019-10-16 18:37:08 -04:00
|
|
|
|
|
|
|
</LinearLayout>
|