blob: ac6fbda453851dffc97b8e406994cb69a900d2c4 [file] [log] [blame]
bigrushdog37a0e6d2016-02-28 02:45:13 -08001<?xml version="1.0" encoding="utf-8"?>
2<!--
3**
4** Copyright 2012, The Android Open Source Project
5**
6** Licensed under the Apache License, Version 2.0 (the "License");
7** you may not use this file except in compliance with the License.
8** You may obtain a copy of the License at
9**
10** http://www.apache.org/licenses/LICENSE-2.0
11**
12** Unless required by applicable law or agreed to in writing, software
13** distributed under the License is distributed on an "AS IS" BASIS,
14** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15** See the License for the specific language governing permissions and
16** limitations under the License.
17-->
18
19<!-- navigation bar for sw600dp (small tablets) -->
20<com.android.systemui.navigation.fling.FlingView
21 xmlns:android="http://schemas.android.com/apk/res/android"
22 xmlns:prvandroid="http://schemas.android.com/apk/prv/res/android"
23 xmlns:systemui="http://schemas.android.com/apk/res/com.android.systemui"
24 android:layout_width="match_parent"
25 android:layout_height="match_parent"
26 android:background="@drawable/system_bar_background" >
27
28 <FrameLayout android:id="@+id/rot0"
29 android:layout_height="match_parent"
30 android:layout_width="match_parent"
31 >
32
bigrushdog37a0e6d2016-02-28 02:45:13 -080033 <LinearLayout
34 android:id="@+id/nav_buttons"
35 android:layout_width="match_parent"
36 android:layout_height="match_parent"
37 android:animateLayoutChanges="true"
38 android:clipChildren="false"
39 android:clipToPadding="false"
40 android:orientation="horizontal" >
41
42 <Space
43 android:layout_width="match_parent"
44 android:layout_height="match_parent"
45 android:layout_weight="1"/>
46
47 <!-- navigation controls -->
48 <com.android.systemui.navigation.fling.FlingLogoView
49 android:id="@+id/fling_console"
50 android:layout_width="wrap_content"
51 android:layout_height="match_parent"
52 android:layout_weight="0"
53 android:src="@drawable/ic_eos_fling" />
54
ezio84c86bb8b2018-08-24 15:15:59 +020055 <ImageView
56 android:id="@+id/rotationLogo"
bigrushdog37a0e6d2016-02-28 02:45:13 -080057 android:layout_width="match_parent"
58 android:layout_height="match_parent"
ezio84c86bb8b2018-08-24 15:15:59 +020059 android:src="@drawable/ic_sysbar_rotate_button"
60 android:layout_weight="1"
61 android:visibility="invisible" />
bigrushdog37a0e6d2016-02-28 02:45:13 -080062
63 </LinearLayout>
bigrushdog37a0e6d2016-02-28 02:45:13 -080064 </FrameLayout>
65
66 <FrameLayout android:id="@+id/rot90"
67 android:layout_height="match_parent"
68 android:layout_width="match_parent"
69 android:visibility="gone"
70 android:paddingTop="0dp"
71 >
72
bigrushdog37a0e6d2016-02-28 02:45:13 -080073 <LinearLayout
74 android:layout_height="match_parent"
75 android:layout_width="match_parent"
76 android:orientation="horizontal"
77 android:clipChildren="false"
78 android:clipToPadding="false"
79 android:id="@+id/nav_buttons"
80 android:animateLayoutChanges="true"
81 >
82
ezio84c86bb8b2018-08-24 15:15:59 +020083 <ImageView
84 android:id="@+id/rotationLogo"
bigrushdog37a0e6d2016-02-28 02:45:13 -080085 android:layout_width="match_parent"
86 android:layout_height="match_parent"
ezio84c86bb8b2018-08-24 15:15:59 +020087 android:src="@drawable/ic_sysbar_rotate_button"
88 android:layout_weight="1"
89 android:visibility="invisible" />
bigrushdog37a0e6d2016-02-28 02:45:13 -080090
91 <!-- navigation controls -->
92 <com.android.systemui.navigation.fling.FlingLogoView
93 android:id="@+id/fling_console"
94 android:layout_width="wrap_content"
95 android:layout_height="match_parent"
96 android:layout_weight="0"
97 android:src="@drawable/ic_eos_fling_land" />
98
99 <Space
100 android:layout_width="match_parent"
101 android:layout_height="match_parent"
102 android:layout_weight="1"/>
103
104 </LinearLayout>
bigrushdog37a0e6d2016-02-28 02:45:13 -0800105 </FrameLayout>
106</com.android.systemui.navigation.fling.FlingView>