| <?xml version="1.0" encoding="utf-8"?> |
| <merge xmlns:android="http://schemas.android.com/apk/res/android" |
| xmlns:tools="http://schemas.android.com/tools" |
| tools:parentTag="android.widget.FrameLayout"> |
| |
| <LinearLayout |
| android:id="@+id/container" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:background="?attr/selectableItemBackground"> |
| |
| <ImageView |
| android:id="@+id/imageView" |
| android:layout_width="40dp" |
| android:layout_height="40dp" |
| android:layout_gravity="center_vertical" |
| android:layout_marginLeft="16dp" |
| android:layout_marginRight="16dp" |
| android:scaleType="centerCrop"/> |
| |
| <TextView |
| android:id="@+id/titleView" |
| android:layout_width="0dp" |
| android:layout_height="wrap_content" |
| android:layout_gravity="center_vertical" |
| android:layout_marginBottom="20dp" |
| android:layout_marginRight="12dp" |
| android:layout_marginTop="20dp" |
| android:layout_weight="1" |
| android:ellipsize="end" |
| android:maxLines="1" |
| android:singleLine="true" |
| android:textColor="@color/text_color_dark" |
| android:textSize="16sp"/> |
| </LinearLayout> |
| |
| <View |
| android:layout_width="match_parent" |
| android:layout_height="@dimen/divider_height" |
| android:layout_gravity="top" |
| android:background="@color/divider"/> |
| </merge> |