1<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3    android:layout_width="@dimen/photo_picker_item_ideal_width"
4    android:layout_height="@dimen/photo_picker_item_ideal_width"
5    android:background="@color/google_grey_600"
6    android:orientation="vertical">
7
8    <ImageView
9        android:id="@+id/image"
10        android:paddingTop="48dp"
11        android:layout_width="wrap_content"
12        android:layout_height="wrap_content"
13        android:src="@drawable/ic_photos_white_24"
14        android:layout_gravity="center_horizontal"/>
15
16    <TextView
17        android:id="@+id/textLabel"
18        android:layout_width="wrap_content"
19        android:layout_height="wrap_content"
20        android:layout_centerInParent="true"
21        android:singleLine="true"
22        android:text="@string/all_photos_button"
23        android:textSize="14sp"
24        android:textColor="@color/photo_action_button_color"
25        android:paddingTop="9dp"
26        android:paddingBottom="35dp"
27        android:layout_gravity="center_horizontal"/>
28</LinearLayout>