blob: 9dc91d5b6e912cbc2d6e3d3e4d6f6e9862ed9e9f [file] [log] [blame]
Michael Kolbc3af0672011-08-09 10:24:41 -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
Enrico Ros1f5a0952014-11-18 20:15:48 -080017<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
Michael Kolbc3af0672011-08-09 10:24:41 -070018 android:layout_width="match_parent"
19 android:layout_height="match_parent"
Enrico Ros1f5a0952014-11-18 20:15:48 -080020 android:orientation="vertical">
21
22 <!-- obfuscate with the same color as the tabs Nav background -->
23 <View
Michael Kolbc3af0672011-08-09 10:24:41 -070024 android:layout_width="match_parent"
Enrico Ros1f5a0952014-11-18 20:15:48 -080025 android:layout_height="match_parent"
26 android:layout_marginTop="@dimen/toolbar_height"
27 android:background="@color/TabNavBackgroundColor" />
28
29 <!-- the moving preview (manually placed) -->
Michael Kolbc3af0672011-08-09 10:24:41 -070030 <ImageView
Enrico Ros1f5a0952014-11-18 20:15:48 -080031 android:id="@+id/anim_screen_content"
Michael Kolba3194d02011-09-07 11:23:51 -070032 android:layout_width="wrap_content"
33 android:layout_height="wrap_content"
34 android:background="@color/white" />
Enrico Ros1f5a0952014-11-18 20:15:48 -080035
36 <!-- block the size of the menu (to protect touch during animations) -->
37 <!-- View
38 android:layout_width="match_parent"
39 android:layout_height="@dimen/toolbar_height" / -->
40</FrameLayout>