1<!--
2  ~ Copyright (C) 2020 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<com.android.systemui.globalactions.GlobalActionsFlatLayout
17    xmlns:android="http://schemas.android.com/apk/res/android"
18    android:id="@id/global_actions_view"
19    android:layout_width="match_parent"
20    android:layout_height="wrap_content"
21    android:orientation="horizontal"
22    android:theme="@style/Theme.SystemUI.QuickSettings"
23    android:clipChildren="false"
24    android:clipToPadding="false"
25    android:layout_marginStart="@dimen/global_actions_side_margin"
26    >
27  <LinearLayout
28      android:id="@android:id/list"
29      android:layout_width="match_parent"
30      android:layout_height="wrap_content"
31      android:paddingTop="@dimen/global_actions_grid_vertical_padding"
32      android:paddingBottom="@dimen/global_actions_grid_vertical_padding"
33      android:orientation="horizontal"
34      android:gravity="left | center_vertical"
35      android:translationZ="@dimen/global_actions_translate"
36      >
37    <RelativeLayout
38        android:id="@+id/global_actions_overflow_button"
39        android:contentDescription="@string/accessibility_menu"
40        android:layout_width="48dp"
41        android:layout_height="48dp"
42        >
43      <ImageView
44          android:src="@drawable/ic_more_vert"
45          android:layout_centerInParent="true"
46          android:layout_width="24dp"
47          android:layout_height="24dp"
48          android:tint="@color/control_more_vert"
49          />
50    </RelativeLayout>
51  </LinearLayout>
52</com.android.systemui.globalactions.GlobalActionsFlatLayout>