blob: a9960d8e322ad2f93636c9dee2a1ed347bb746f9 [file] [log] [blame]
Yorke Lee6b049122013-07-16 10:38:02 -07001<?xml version="1.0" encoding="utf-8"?>
Yorke Leedfb2eee2013-06-26 18:24:32 -07002<!-- Copyright (C) 2013 The Android Open Source Project
Yorke Lee6b049122013-07-16 10:38:02 -07003
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-->
Yorke Leedfb2eee2013-06-26 18:24:32 -070016<FrameLayout
17 xmlns:android="http://schemas.android.com/apk/res/android"
Yorke Lee6b049122013-07-16 10:38:02 -070018 android:layout_width="match_parent"
19 android:layout_height="match_parent"
Yorke Leedfb2eee2013-06-26 18:24:32 -070020 android:focusable="true"
21 android:focusableInTouchMode="true"
22 android:clipChildren="false"
23 android:id="@+id/dialtacts_container"
Yorke Lee6b049122013-07-16 10:38:02 -070024 >
Yorke Leedfb2eee2013-06-26 18:24:32 -070025 <LinearLayout
Yorke Lee6b049122013-07-16 10:38:02 -070026 android:layout_width="match_parent"
Yorke Leedfb2eee2013-06-26 18:24:32 -070027 android:layout_height="match_parent"
28 android:clipChildren="false"
29 android:orientation="vertical" >
30 <SearchView
31 android:id="@+id/search_view"
32 android:layout_width="match_parent"
33 android:layout_height="?android:attr/actionBarSize"
34 android:iconifiedByDefault="false"
35 android:inputType="textFilter" />
36 <FrameLayout
37 android:layout_height="0dp"
38 android:layout_weight="1"
39 android:layout_width="match_parent"
40 android:id="@id/dialtacts_frame"
41 android:clipChildren="false">
42 </FrameLayout>
43 <View
44 android:id="@+id/dialtacts_bottom_padding"
45 android:layout_width="match_parent"
46 android:layout_height="?android:attr/actionBarSize"
47 android:visibility="gone" />
48 </LinearLayout>
Yorke Lee6b049122013-07-16 10:38:02 -070049</FrameLayout>