generated from Grigo/AndroidTemplate
49 lines
1.6 KiB
XML
49 lines
1.6 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:orientation="vertical">
|
|
|
|
<EditText
|
|
android:id="@+id/edit_search"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="Поиск по MMSI, названию..."
|
|
android:inputType="text"
|
|
android:imeOptions="actionDone"
|
|
android:padding="12dp"/>
|
|
|
|
<TextView
|
|
android:id="@+id/text_target_count"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="AIS цели: 0"
|
|
android:textSize="16sp"
|
|
android:textStyle="bold"
|
|
android:padding="12dp"
|
|
android:background="#f0f0f0"
|
|
android:textColor="#333333"
|
|
android:gravity="center" />
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/recycler_ais_targets"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"/>
|
|
|
|
<TextView
|
|
android:id="@+id/text_empty_state"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center"
|
|
android:text="Нет AIS целей\nВсе корабли уплыли"
|
|
android:textAlignment="center"
|
|
android:textSize="18sp"
|
|
android:textColor="@android:color/darker_gray"
|
|
android:gravity="center"
|
|
android:visibility="gone"/>
|
|
|
|
</LinearLayout>
|
|
|
|
|