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"
|
|
|
|
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">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:textAppearance="?attr/textAppearanceListItem"
|
|
|
|
android:textStyle="bold"
|
|
|
|
tools:text="Share location"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/description"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:textAppearance="?attr/textAppearanceListItemSecondary"
|
|
|
|
tools:text="Live: 1 • All: 36"/>
|
|
|
|
|
|
|
|
</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-21 12:10:36 +02:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
<include
|
|
|
|
android:id="@+id/bottom_shadow"
|
|
|
|
layout="@layout/card_bottom_divider"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|