blob: 5b6ce4fb813c74b22c40a7c822a259e0f6669f90 [file] [log] [blame]
Yorke Lee6b049122013-07-16 10:38:02 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2012 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
Yorke Leeae6302b2015-02-03 16:33:46 -080017<FrameLayout
Yorke Lee6b049122013-07-16 10:38:02 -070018 xmlns:android="http://schemas.android.com/apk/res/android"
Yorke Lee6b049122013-07-16 10:38:02 -070019 android:layout_width="match_parent"
20 android:layout_height="match_parent"
Yorke Lee9e91bb02014-03-05 17:50:50 -080021 android:clipChildren="false">
Christine Chen4fdf5942013-09-24 17:42:32 -070022
Yorke Lee6b049122013-07-16 10:38:02 -070023 <FrameLayout
Christine Chen4fdf5942013-09-24 17:42:32 -070024 android:id="@+id/contact_tile_frame"
Yorke Lee6b049122013-07-16 10:38:02 -070025 android:layout_width="match_parent"
Yorke Lee4ed7db82013-09-27 17:04:00 -070026 android:layout_height="match_parent"
Christine Chen4fdf5942013-09-24 17:42:32 -070027 android:layout_alignParentTop="true"
28 android:layout_alignParentLeft="true"
Yorke Leeefb2d9c2014-04-18 14:05:01 -070029 android:paddingStart="@dimen/favorites_row_start_padding"
30 android:paddingEnd="@dimen/favorites_row_end_padding" >
Hongwei Wangbf5b2982013-09-11 10:07:45 -070031 <com.android.dialer.list.PhoneFavoriteListView
Yorke Lee6b049122013-07-16 10:38:02 -070032 android:id="@+id/contact_tile_list"
33 android:layout_width="match_parent"
34 android:layout_height="match_parent"
Yorke Lee4cde5662014-04-18 17:14:58 -070035 android:paddingTop="@dimen/favorites_row_top_padding"
Yorke Leeefb2d9c2014-04-18 14:05:01 -070036 android:numColumns="@integer/contact_tile_column_count_in_favorites"
Yorke Lee6b049122013-07-16 10:38:02 -070037 android:clipToPadding="false"
38 android:fadingEdge="none"
Yorke Leebd180af2014-05-04 14:50:49 -070039 android:divider="@null"
Yorke Lee781ee242014-05-22 16:11:25 -070040 android:paddingBottom="@dimen/floating_action_button_list_bottom_padding"
Yorke Leebd180af2014-05-04 14:50:49 -070041 android:nestedScrollingEnabled="true" />
Yorke Lee6b049122013-07-16 10:38:02 -070042 </FrameLayout>
Christine Chen4fdf5942013-09-24 17:42:32 -070043
Yorke Lee38019af2015-07-14 17:05:38 -070044 <com.android.dialer.widget.EmptyContentView
Andrew Lee0a4327e2014-06-10 15:09:46 -070045 android:id="@+id/empty_list_view"
Christine Chen4fdf5942013-09-24 17:42:32 -070046 android:layout_width="match_parent"
Yorke Lee63825c82015-07-15 17:35:33 -070047 android:layout_height="wrap_content"
48 android:layout_gravity="center"
Christine Chen4fdf5942013-09-24 17:42:32 -070049 android:visibility="gone"/>
Andrew Lee0a4327e2014-06-10 15:09:46 -070050
Yorke Leeae6302b2015-02-03 16:33:46 -080051</FrameLayout>