• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<merge xmlns:android="http://schemas.android.com/apk/res/android"
3    xmlns:tools="http://schemas.android.com/tools"
4    tools:parentTag="android.widget.FrameLayout">
5
6    <LinearLayout
7        android:id="@+id/container"
8        android:layout_width="match_parent"
9        android:layout_height="wrap_content"
10        android:background="?attr/selectableItemBackground">
11
12        <ImageView
13            android:id="@+id/imageView"
14            android:layout_width="40dp"
15            android:layout_height="40dp"
16            android:layout_gravity="center_vertical"
17            android:layout_marginLeft="16dp"
18            android:layout_marginRight="16dp"
19            android:scaleType="centerCrop"/>
20
21        <TextView
22            android:id="@+id/titleView"
23            android:layout_width="0dp"
24            android:layout_height="wrap_content"
25            android:layout_gravity="center_vertical"
26            android:layout_marginBottom="20dp"
27            android:layout_marginRight="12dp"
28            android:layout_marginTop="20dp"
29            android:layout_weight="1"
30            android:ellipsize="end"
31            android:maxLines="1"
32            android:singleLine="true"
33            android:textColor="@color/text_color_dark"
34            android:textSize="16sp"/>
35    </LinearLayout>
36
37    <View
38        android:layout_width="match_parent"
39        android:layout_height="@dimen/divider_height"
40        android:layout_gravity="top"
41        android:background="@color/divider"/>
42</merge>