fedilab-Android-App/app/src/main/res/layout/popup_contact.xml

35 lines
1.1 KiB
XML
Raw Normal View History

2019-01-23 19:23:26 +01:00
<?xml version="1.0" encoding="utf-8"?>
2019-09-06 17:55:14 +02:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2019-01-23 19:23:26 +01:00
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
2019-09-06 17:55:14 +02:00
2019-01-23 19:23:26 +01:00
<EditText
android:id="@+id/search_account"
android:drawableRight="@drawable/ic_search"
android:drawableEnd="@drawable/ic_search"
android:maxLines="1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="text" />
2019-09-06 17:55:14 +02:00
2019-01-23 19:23:26 +01:00
<RelativeLayout
android:id="@+id/loader"
android:layout_width="match_parent"
android:layout_height="match_parent"
2019-09-06 17:55:14 +02:00
android:gravity="center">
2019-01-23 19:23:26 +01:00
<ProgressBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:indeterminate="true" />
</RelativeLayout>
2019-09-06 17:55:14 +02:00
2019-01-23 19:23:26 +01:00
<ListView
android:id="@+id/lv_accounts_search"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="none"
2019-09-06 17:55:14 +02:00
android:divider="@null" />
2019-01-23 19:23:26 +01:00
</LinearLayout>