OSDN Git Service

7601efc92a78cf5a1e36ba74966abbaaee3ffc8e
[android-x86/frameworks-base.git] / packages / SystemUI / res / layout / navigation_layout_rot90.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright (C) 2016 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
17 <FrameLayout
18     xmlns:android="http://schemas.android.com/apk/res/android"
19     xmlns:systemui="http://schemas.android.com/apk/res-auto"
20     android:layout_width="match_parent"
21     android:layout_height="match_parent">
22
23     <FrameLayout
24         android:id="@+id/nav_buttons"
25         android:layout_width="match_parent"
26         android:layout_height="match_parent">
27
28         <com.android.systemui.statusbar.phone.ReverseLinearLayout
29             android:id="@+id/ends_group"
30             android:layout_width="match_parent"
31             android:layout_height="match_parent"
32             android:orientation="vertical"
33             android:clipChildren="false" />
34
35         <com.android.systemui.statusbar.phone.ReverseLinearLayout
36             android:id="@+id/center_group"
37             android:layout_width="match_parent"
38             android:layout_height="match_parent"
39             android:gravity="center"
40             android:orientation="vertical"
41             android:clipChildren="false" />
42
43     </FrameLayout>
44
45     <com.android.systemui.statusbar.policy.DeadZone
46         android:id="@+id/deadzone"
47         android:layout_height="match_parent"
48         android:layout_width="match_parent"
49         android:layout_gravity="top"
50         systemui:minSize="@dimen/navigation_bar_deadzone_size"
51         systemui:maxSize="@dimen/navigation_bar_deadzone_size_max"
52         systemui:holdTime="@integer/navigation_bar_deadzone_hold"
53         systemui:decayTime="@integer/navigation_bar_deadzone_decay"
54         systemui:orientation="vertical"
55         />
56
57 </FrameLayout>