blob: aac0daf3b0f23f543cc5c4a41a98c87dc3d466f7 [file] [log] [blame]
Sai Cheemalapati1e613802014-06-02 09:41:03 -07001<?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<view class="com.android.dialer.dialpad.DialpadFragment$DialpadSlidingLinearLayout"
17 xmlns:android="http://schemas.android.com/apk/res/android"
18 android:layout_width="match_parent"
19 android:layout_height="wrap_content"
20 android:orientation="horizontal"
21 >
22 <!-- spacer view -->
23 <View
24 android:id="@+id/spacer"
25 android:layout_width="0dp"
26 android:layout_height="match_parent"
27 android:layout_weight="1"
28 android:background="#00000000" />
29 <!-- Dialpad shadow -->
30 <View
31 android:layout_width="@dimen/shadow_length"
32 android:layout_height="match_parent"
33 android:background="@drawable/shadow_fade_left" />
34 <include layout="@layout/dialpad_view"
35 android:layout_height="match_parent"
36 android:layout_width="0dp"
37 android:layout_weight="1" />
38 <!-- "Dialpad chooser" UI, shown only when the user brings up the
39 Dialer while a call is already in progress.
40 When this UI is visible, the other Dialer elements
41 (the textfield/button and the dialpad) are hidden. -->
42 <ListView android:id="@+id/dialpadChooser"
43 android:layout_width="match_parent"
44 android:layout_height="wrap_content"
45 android:background="@color/background_dialer_light"
46 android:visibility="gone" />
47</view>