blob: 90a776884699261d001dd1d74df9a35e3cbc6a01 [file] [log] [blame]
Mike Digmanf77fb912018-05-21 11:21:30 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2018 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 xmlns:android="http://schemas.android.com/apk/res/android"
18 xmlns:systemui="http://schemas.android.com/apk/res-auto"
19 android:id="@+id/menu_container"
20 android:layout_width="@dimen/navigation_key_width"
21 android:layout_height="match_parent"
22 android:importantForAccessibility="no"
Matthew Ngc07ed4a2018-06-28 12:45:26 -070023 android:focusable="false"
Mike Digmanf77fb912018-05-21 11:21:30 -070024 android:clipChildren="false"
25 android:clipToPadding="false"
26 >
27 <com.android.systemui.statusbar.policy.KeyButtonView
28 android:id="@+id/menu"
29 android:layout_height="match_parent"
30 android:layout_width="match_parent"
31 android:layout_weight="0"
32 android:scaleType="center"
33 systemui:keyCode="82"
34 systemui:playSound="false"
35 android:visibility="invisible"
36 android:contentDescription="@string/accessibility_menu"
37 android:paddingStart="@dimen/navigation_key_padding"
38 android:paddingEnd="@dimen/navigation_key_padding"
39 />
Matthew Ngf03c3a62019-04-03 13:52:57 -070040 <include layout="@layout/ime_switcher"
Mike Digmanf77fb912018-05-21 11:21:30 -070041 android:layout_width="match_parent"
42 android:layout_height="match_parent"
Mike Digmanf77fb912018-05-21 11:21:30 -070043 android:visibility="invisible"
Mike Digmanf77fb912018-05-21 11:21:30 -070044 />
Tracy Zhouefc34662019-04-22 13:37:12 -070045 <include layout="@layout/rotate_suggestion"
46 android:layout_width="match_parent"
47 android:layout_height="match_parent"
48 android:visibility="invisible"
Mike Digmanf77fb912018-05-21 11:21:30 -070049 />
50 <com.android.systemui.statusbar.policy.KeyButtonView
51 android:id="@+id/accessibility_button"
52 android:layout_width="match_parent"
53 android:layout_height="match_parent"
54 android:layout_weight="0"
55 android:scaleType="center"
56 android:visibility="invisible"
57 android:contentDescription="@string/accessibility_accessibility_button"
58 android:paddingStart="@dimen/navigation_key_padding"
59 android:paddingEnd="@dimen/navigation_key_padding"
60 />
61</FrameLayout>