34 lines
1.1 KiB
XML
34 lines
1.1 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout
|
||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:orientation="vertical"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content">
|
||
|
<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" />
|
||
|
<RelativeLayout
|
||
|
android:id="@+id/loader"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:gravity="center"
|
||
|
>
|
||
|
<ProgressBar
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:indeterminate="true" />
|
||
|
</RelativeLayout>
|
||
|
<ListView
|
||
|
android:id="@+id/lv_accounts_search"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:scrollbars="none"
|
||
|
android:divider="@null"
|
||
|
/>
|
||
|
</LinearLayout>
|