blob: b55210a106d535e6f0962fc5bd823741541e8a8a [file] [log] [blame]
Chiao Chenga1b886a2012-12-05 12:09:05 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2011 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<!-- Layout showing the type of account filter for phone favorite screen
18 (or, new phone "all" screen).
19 This is very similar to account_filter_header.xml but different in its
20 top padding. -->
21<LinearLayout
22 xmlns:android="http://schemas.android.com/apk/res/android"
23 android:id="@+id/account_filter_header_container"
24 android:layout_width="match_parent"
25 android:layout_height="wrap_content"
26 android:orientation="vertical"
27 android:paddingTop="8dip"
Fabrice Di Meglioc341db02013-04-03 21:11:37 -070028 android:layout_marginStart="@dimen/contact_browser_list_header_left_margin"
29 android:layout_marginEnd="@dimen/contact_browser_list_header_right_margin"
Chiao Chenga1b886a2012-12-05 12:09:05 -080030 android:background="?android:attr/selectableItemBackground"
31 android:visibility="gone">
32 <TextView
33 android:id="@+id/account_filter_header"
34 style="@style/ContactListSeparatorTextViewStyle"
Fabrice Di Meglioc341db02013-04-03 21:11:37 -070035 android:paddingStart="@dimen/contact_browser_list_item_text_indent" />
Yorke Lee9639eff2013-01-07 14:31:20 -080036 <TextView
37 android:id="@+id/contact_list_all_empty"
38 android:layout_width="match_parent"
39 android:layout_height="wrap_content"
40 android:textColor="?android:attr/textColorSecondary"
Fabrice Di Meglioc341db02013-04-03 21:11:37 -070041 android:paddingStart="8dip"
Yorke Lee9639eff2013-01-07 14:31:20 -080042 android:paddingTop="@dimen/contact_phone_list_empty_description_padding"
43 android:paddingBottom="@dimen/contact_phone_list_empty_description_padding"
44 android:textSize="@dimen/contact_phone_list_empty_description_size"
45 android:text="@string/listFoundAllContactsZero"
46 android:visibility="gone"/>
Chiao Chenga1b886a2012-12-05 12:09:05 -080047</LinearLayout>