174 lines
6 KiB
XML
174 lines
6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<include layout="@layout/list_item_divider"/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/card_bg_color"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/user_row"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/list_item_height"
|
|
android:background="?attr/selectableItemBackground"
|
|
android:gravity="center_vertical">
|
|
|
|
<ImageView
|
|
android:id="@+id/icon"
|
|
android:layout_width="@dimen/list_item_icon_size"
|
|
android:layout_height="@dimen/list_item_icon_size"
|
|
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"
|
|
tools:src="@drawable/img_user_picture"/>
|
|
|
|
<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">
|
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
android:id="@+id/title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:ellipsize="end"
|
|
android:maxLines="1"
|
|
android:textColor="?android:textColorPrimary"
|
|
android:textSize="@dimen/list_item_title_text_size"
|
|
app:typeface="@string/font_roboto_regular"
|
|
tools:text="Share location"/>
|
|
|
|
<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"
|
|
android:textSize="@dimen/list_item_description_text_size"
|
|
android:visibility="visible" />
|
|
|
|
</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>
|
|
|
|
</LinearLayout>
|
|
|
|
<ImageView
|
|
android:id="@+id/image_button"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginEnd="@dimen/content_padding_small"
|
|
android:layout_marginRight="@dimen/content_padding_small"
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
|
android:padding="@dimen/image_button_padding"
|
|
tools:src="@drawable/ic_overflow_menu_white"
|
|
tools:tint="@color/icon_light"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/show_on_map_row"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/list_item_height_min"
|
|
android:background="?attr/selectableItemBackground"
|
|
android:gravity="center_vertical"
|
|
android:paddingEnd="@dimen/content_padding_standard"
|
|
android:paddingLeft="@dimen/list_item_content_margin"
|
|
android:paddingRight="@dimen/content_padding_standard"
|
|
android:paddingStart="@dimen/list_item_content_margin">
|
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
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:text="@string/show_on_map"
|
|
android:textAppearance="?attr/textAppearanceListItemSecondary"
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
app:typeface="@string/font_roboto_medium"/>
|
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
android:id="@+id/show_on_map_state"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="?attr/textAppearanceListItemSecondary"
|
|
android:textColor="?attr/ctrl_active_color"
|
|
app:typeface="@string/font_roboto_medium"
|
|
tools:text="All"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:id="@+id/bottom_divider"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:layout_marginBottom="@dimen/card_divider_bottom_margin"
|
|
android:layout_marginLeft="@dimen/list_item_content_margin"
|
|
android:layout_marginStart="@dimen/list_item_content_margin"
|
|
android:background="?attr/card_divider_color"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<include
|
|
android:id="@+id/bottom_shadow"
|
|
layout="@layout/card_bottom_divider"/>
|
|
|
|
</LinearLayout>
|