81 lines
2.7 KiB
XML
81 lines
2.7 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">
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/card_bg_color">
|
|
|
|
<LinearLayout
|
|
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"
|
|
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/ic_launcher_background"/>
|
|
|
|
<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_title_text_size"
|
|
app:typeface="@string/font_roboto_regular"
|
|
tools:text="Share location"/>
|
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
android:id="@+id/description"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
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>
|
|
|
|
<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"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</FrameLayout>
|
|
|
|
<include
|
|
android:id="@+id/bottom_shadow"
|
|
layout="@layout/card_bottom_divider"/>
|
|
|
|
</LinearLayout>
|