2019-04-10 17:00:45 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:osmand="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2019-04-11 11:13:05 +02:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/empty_state_background_image"
|
2019-04-10 17:00:45 +02:00
|
|
|
android:layout_width="match_parent"
|
2019-04-11 11:13:05 +02:00
|
|
|
android:layout_height="wrap_content"
|
2019-04-11 13:07:58 +02:00
|
|
|
android:layout_marginBottom="@dimen/content_padding_standard"
|
2019-04-11 11:13:05 +02:00
|
|
|
android:scaleType="center"
|
|
|
|
android:src="@drawable/img_empty_state_search" />
|
2019-04-10 17:00:45 +02:00
|
|
|
|
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="@dimen/content_padding_half"
|
|
|
|
android:background="@null"
|
|
|
|
android:text="@string/search_contacts"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
|
|
android:textSize="20sp"
|
|
|
|
osmand:typeface="@string/font_roboto_medium" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2019-04-11 13:07:58 +02:00
|
|
|
android:layout_marginLeft="@dimen/empty_state_descr_margin"
|
|
|
|
android:layout_marginRight="@dimen/empty_state_descr_margin"
|
2019-04-10 17:00:45 +02:00
|
|
|
android:background="@null"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/search_contacts_descr"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
|
|
android:textSize="18sp" />
|
|
|
|
|
|
|
|
</LinearLayout>
|