• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<com.android.systemui.HardwareUiLayout
3    xmlns:android="http://schemas.android.com/apk/res/android"
4    android:layout_width="match_parent"
5    android:layout_height="match_parent"
6    android:layout_marginBottom="0dp"
7    android:paddingTop="@dimen/global_actions_top_padding"
8    android:clipToPadding="false"
9    android:theme="@style/qs_theme"
10    android:clipChildren="false">
11
12    <!-- Global actions is right-aligned to be physically near power button -->
13    <LinearLayout
14        android:id="@android:id/list"
15        android:layout_width="@dimen/global_actions_panel_width"
16        android:layout_height="wrap_content"
17        android:layout_gravity="top|right"
18        android:gravity="center"
19        android:orientation="vertical"
20        android:padding="12dp"
21        android:translationZ="9dp" />
22
23</com.android.systemui.HardwareUiLayout>
24