blob: 7aa2aa4a9482372baf7f27e35f49f481b6be7636 [file] [log] [blame]
Jeff Sharkeycde73892011-04-07 00:48:02 -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
17 xmlns:android="http://schemas.android.com/apk/res/android"
18 class="com.android.contacts.quickcontact.FloatingChildLayout"
19 android:id="@+id/floating_layout"
20 android:layout_width="match_parent"
21 android:layout_height="match_parent"
22 android:focusable="true"
23 android:focusableInTouchMode="true"
24 android:descendantFocusability="afterDescendants">
Daniel Lehmannedb576a2011-07-27 16:45:13 -070025 <LinearLayout
26 android:id="@android:id/content"
27 android:layout_width="match_parent"
28 android:layout_height="wrap_content"
29 android:paddingLeft="15dip"
30 android:paddingRight="15dip"
31 android:orientation="vertical">
32 <include layout="@layout/quickcontact_photo_container" />
33 <View
34 android:id="@+id/line_before_track"
35 android:layout_width="match_parent"
36 android:layout_height="2dip"
37 android:background="@color/quickcontact_list_background" />
38 <include layout="@layout/quickcontact_track" />
39 <android.support.v4.view.ViewPager
40 android:id="@+id/item_list_pager"
41 android:layout_width="match_parent"
42 android:layout_height="180dip" />
43 </LinearLayout>
Jeff Sharkeycde73892011-04-07 00:48:02 -070044</view>