mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-20 13:08:07 +00:00
77 lines
2.4 KiB
XML
77 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/colorG"
|
|
android:orientation="vertical" >
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:layout_margin="10dp">
|
|
|
|
<EditText
|
|
android:contentDescription="@string/content_description_search"
|
|
android:textCursorDrawable="@null"
|
|
android:id="@+id/searchField"
|
|
android:layout_weight="0.15"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="40dp"
|
|
android:paddingLeft="10dp"
|
|
android:textColorHint="@color/colorE"
|
|
android:hint="@string/search_contact"
|
|
android:textColor="@color/colorC"
|
|
android:background="@drawable/resizable_textfield"
|
|
android:inputType="textPersonName"/>
|
|
|
|
<ImageView
|
|
android:contentDescription="@string/content_description_cancel"
|
|
android:id="@+id/clearSearchField"
|
|
android:layout_weight="0.9"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="30dp"
|
|
android:src="@drawable/clean_field_button"
|
|
android:layout_gravity="center"
|
|
android:layout_marginLeft="5dp"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<ListView
|
|
android:id="@+id/contactsList"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:divider="@color/colorF"
|
|
android:fastScrollAlwaysVisible="true"
|
|
android:fastScrollEnabled="true"
|
|
android:dividerHeight="1dp" />
|
|
|
|
<TextView
|
|
android:id="@+id/noSipContact"
|
|
android:visibility="gone"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:layout_centerVertical="true"
|
|
android:text="@string/no_sip_contact"
|
|
android:textColor="@color/colorB"
|
|
android:textAppearance="@android:style/TextAppearance.Large"/>
|
|
|
|
<TextView
|
|
android:id="@+id/noContact"
|
|
android:visibility="gone"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:layout_centerVertical="true"
|
|
android:text="@string/no_contact"
|
|
android:textColor="@color/colorB"
|
|
android:textAppearance="@android:style/TextAppearance.Large"/>
|
|
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout>
|