OSDN Git Service

Add some (optional) debug logging to the player service.
[android-x86/packages-apps-Eleven.git] / res / layout / activity_profile_base.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
3   Copyright (C) 2012 Andrew Neal
4  
5   Licensed under the Apache License, Version 2.0 (the "License");
6   you may not use this file except in compliance with the License.
7   You may obtain a copy of the License at
8  
9        http://www.apache.org/licenses/LICENSE-2.0
10  
11   Unless required by applicable law or agreed to in writing, software
12   distributed under the License is distributed on an "AS IS" BASIS,
13   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   See the License for the specific language governing permissions and
15   limitations under the License.\r-->
16 <com.andrew.apollo.widgets.theme.ThemeableFrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
17     android:layout_width="match_parent"
18     android:layout_height="match_parent" >
19
20     <LinearLayout
21         android:layout_width="match_parent"
22         android:layout_height="match_parent"
23         android:orientation="vertical" >
24
25         <include
26             android:id="@+id/shadow"
27             layout="@layout/top_shadow" />
28
29         <RelativeLayout
30             android:layout_width="match_parent"
31             android:layout_height="0dip"
32             android:layout_weight="1" >
33
34             <android.support.v4.view.ViewPager
35                 android:id="@+id/acivity_profile_base_pager"
36                 android:layout_width="match_parent"
37                 android:layout_height="match_parent"
38                 android:layout_alignParentLeft="true"
39                 android:layout_alignParentTop="true" />
40
41             <include
42                 android:id="@+id/acivity_profile_base_tab_carousel"
43                 android:layout_width="match_parent"
44                 android:layout_height="wrap_content"
45                 android:layout_alignParentLeft="true"
46                 android:layout_alignParentTop="true"
47                 layout="@layout/profile_tab_carousel" />
48         </RelativeLayout>
49
50         <include layout="@layout/bottom_action_bar" />
51     </LinearLayout>
52
53 </com.andrew.apollo.widgets.theme.ThemeableFrameLayout>