blob: 97ac4c79c5c5c9f608ab686e4020e0f096ab51d0 [file] [log] [blame]
Wenyi Wang1fc3ef42016-01-14 18:21:40 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2015 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17<merge xmlns:android="http://schemas.android.com/apk/res/android">
18 <ImageView
19 android:id="@+id/emptyListViewImage"
20 android:layout_height="wrap_content"
21 android:layout_width="match_parent"
22 android:gravity="center_horizontal" />
23
24 <TextView
25 android:id="@+id/emptyListViewMessage"
26 android:layout_width="match_parent"
27 android:layout_height="wrap_content"
28 android:gravity="center_horizontal|top"
29 android:textSize="@dimen/empty_list_message_text_size"
30 android:textColor="@color/empty_list_text_color"
31 android:paddingRight="16dp"
32 android:paddingLeft="16dp"
33 android:paddingTop="8dp"
34 android:paddingBottom="8dp" />
35
36 <TextView
37 android:id="@+id/emptyListViewAction"
38 android:layout_width="wrap_content"
39 android:layout_height="wrap_content"
40 android:gravity="center_horizontal"
41 android:layout_gravity="center_horizontal"
42 android:paddingRight="16dp"
43 android:paddingLeft="16dp"
44 android:paddingTop="8dp"
45 android:paddingBottom="8dp"
46 android:background="?android:attr/selectableItemBackground"
47 android:clickable="true"
48 style="@style/TextActionStyle" />
49
50 <Space
51 android:layout_width="match_parent"
52 android:layout_height="40dp" />
53
54</merge>