summaryrefslogtreecommitdiff
path: root/res/layout/all_contacts_fragment.xml
diff options
context:
space:
mode:
authorYorke Lee <yorkelee@google.com>2015-07-15 17:35:33 -0700
committerYorke Lee <yorkelee@google.com>2015-07-15 17:35:33 -0700
commit63825c8c150676a563719a00aa02b42c9775189c (patch)
tree3dad71e7cf267c9aca6567c2f4d4e6fef09e9020 /res/layout/all_contacts_fragment.xml
parentfb9c5391c71e65668d42eea5d8843fd1a14cc792 (diff)
Update Dialer permissions UI per mocks
Bug: 22174668 Change-Id: If6757ff66c411228cfa22d70caaf6cc532fd2b31
Diffstat (limited to 'res/layout/all_contacts_fragment.xml')
-rw-r--r--res/layout/all_contacts_fragment.xml54
1 files changed, 54 insertions, 0 deletions
diff --git a/res/layout/all_contacts_fragment.xml b/res/layout/all_contacts_fragment.xml
new file mode 100644
index 000000000..2ca013a19
--- /dev/null
+++ b/res/layout/all_contacts_fragment.xml
@@ -0,0 +1,54 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<LinearLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/pinned_header_list_layout"
+ android:orientation="vertical"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent">
+
+ <!-- Shown only when an Account filter is set.
+ - paddingTop should be here to show "shade" effect correctly. -->
+ <!-- TODO: Remove the filter header. -->
+ <include layout="@layout/account_filter_header" />
+
+ <FrameLayout
+ android:layout_width="match_parent"
+ android:layout_height="0dip"
+ android:layout_weight="1" >
+ <view
+ class="com.android.contacts.common.list.PinnedHeaderListView"
+ style="@style/DialtactsTheme"
+ android:id="@android:id/list"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:layout_marginStart="?attr/contact_browser_list_padding_left"
+ android:layout_marginEnd="?attr/contact_browser_list_padding_right"
+ android:paddingTop="18dp"
+ android:fastScrollEnabled="true"
+ android:fadingEdge="none"
+ android:nestedScrollingEnabled="true" />
+
+ <com.android.dialer.widget.EmptyContentView
+ android:id="@+id/empty_list_view"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center"
+ android:visibility="gone"/>
+
+ </FrameLayout>
+</LinearLayout>