2018-06-21 12:10:36 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-06-27 17:35:29 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2018-06-21 12:10:36 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/card_bg_color">
|
|
|
|
|
|
|
|
<LinearLayout
|
2018-07-09 17:51:04 +02:00
|
|
|
android:id="@+id/main_view"
|
2018-06-21 12:10:36 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/list_item_height"
|
|
|
|
android:layout_marginBottom="@dimen/list_item_bottom_margin"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:gravity="center_vertical">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/icon"
|
2018-10-19 15:03:10 +02:00
|
|
|
android:layout_width="@dimen/list_item_icon_size_big"
|
|
|
|
android:layout_height="@dimen/list_item_icon_size_big"
|
2018-06-21 12:10:36 +02:00
|
|
|
android:layout_marginEnd="@dimen/list_item_icon_margin_right"
|
|
|
|
android:layout_marginLeft="@dimen/list_item_icon_margin_left"
|
|
|
|
android:layout_marginRight="@dimen/list_item_icon_margin_right"
|
|
|
|
android:layout_marginStart="@dimen/list_item_icon_margin_left"
|
2018-07-05 17:02:17 +02:00
|
|
|
tools:src="@drawable/img_user_picture"/>
|
2018-06-21 12:10:36 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="@dimen/content_padding_standard"
|
|
|
|
android:layout_marginRight="@dimen/content_padding_standard"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2018-06-27 17:35:29 +02:00
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
2018-06-21 12:10:36 +02:00
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
2018-06-27 17:35:29 +02:00
|
|
|
android:textColor="?android:textColorPrimary"
|
2018-06-27 17:36:46 +02:00
|
|
|
android:textSize="@dimen/list_item_title_text_size"
|
2018-06-27 17:35:29 +02:00
|
|
|
app:typeface="@string/font_roboto_regular"
|
2018-06-21 12:10:36 +02:00
|
|
|
tools:text="Share location"/>
|
|
|
|
|
2018-07-06 14:05:19 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/location_view_container"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:visibility="visible">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/direction_icon"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="4dp"
|
|
|
|
android:layout_marginRight="4dp"
|
|
|
|
tools:src="@drawable/ic_direction_arrow"
|
|
|
|
tools:tint="@color/ctrl_active_light"/>
|
|
|
|
|
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
|
|
android:id="@+id/distance_text"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:textSize="@dimen/list_item_description_text_size"
|
|
|
|
app:typeface="@string/font_roboto_medium"
|
|
|
|
tools:text="213 m"
|
|
|
|
tools:textColor="@color/ctrl_active_light"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="4dp"
|
|
|
|
android:layout_marginRight="4dp"
|
|
|
|
android:text="•"
|
|
|
|
android:textColor="?attr/android:textColorSecondary"
|
2018-08-02 14:29:41 +02:00
|
|
|
android:textSize="@dimen/list_item_description_text_size"
|
2018-08-15 16:00:58 +02:00
|
|
|
android:visibility="visible" />
|
2018-07-06 14:05:19 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
|
|
android:id="@+id/description"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:textColor="?attr/android:textColorSecondary"
|
|
|
|
android:textSize="@dimen/list_item_description_text_size"
|
|
|
|
app:typeface="@string/font_roboto_regular"
|
|
|
|
tools:text="Live: 1 • All: 36"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
2018-06-21 12:10:36 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2018-06-26 17:45:59 +02:00
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/check_box"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="@dimen/content_padding_standard"
|
|
|
|
android:layout_marginRight="@dimen/content_padding_standard"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:visibility="visible"/>
|
|
|
|
|
2018-06-28 15:23:14 +02:00
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
|
|
android:id="@+id/text_in_area"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="@dimen/dialog_button_height"
|
|
|
|
android:layout_marginEnd="@dimen/image_button_padding"
|
|
|
|
android:layout_marginRight="@dimen/image_button_padding"
|
|
|
|
android:background="?attr/secondary_btn_bg"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:gravity="center"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:paddingLeft="@dimen/image_button_padding"
|
|
|
|
android:paddingRight="@dimen/image_button_padding"
|
|
|
|
android:textColor="?attr/ctrl_active_color"
|
|
|
|
android:textSize="@dimen/text_button_text_size"
|
|
|
|
android:visibility="gone"
|
|
|
|
app:typeface="@string/font_roboto_medium"
|
|
|
|
tools:text="1 h"
|
|
|
|
tools:visibility="visible"/>
|
|
|
|
|
2018-06-21 12:10:36 +02:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
<include
|
|
|
|
android:id="@+id/bottom_shadow"
|
|
|
|
layout="@layout/card_bottom_divider"/>
|
|
|
|
|
2018-11-06 13:16:20 +01:00
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
|
|
android:id="@+id/last_telegram_update_time"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="bottom|center_horizontal"
|
|
|
|
android:gravity="center"
|
|
|
|
android:paddingTop="@dimen/content_padding_half"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
|
|
android:textSize="@dimen/list_item_description_text_size"
|
|
|
|
android:visibility="gone"
|
|
|
|
app:typeface="@string/font_roboto_regular" />
|
|
|
|
|
2018-06-21 12:10:36 +02:00
|
|
|
</LinearLayout>
|