blob: a620a8eb144bebad7667a0fcb7d8ba603a28e619 [file] [log] [blame]
Aaron Heuckroth166392f2019-01-17 16:50:59 -05001<?xml version="1.0" encoding="utf-8"?>
2<com.android.systemui.globalactions.GlobalActionsGridLayout
3 xmlns:android="http://schemas.android.com/apk/res/android"
4 android:id="@id/global_actions_view"
5 android:layout_width="match_parent"
6 android:layout_height="match_parent"
7 android:orientation="horizontal"
8 android:clipToPadding="false"
9 android:theme="@style/qs_theme"
10 android:gravity="bottom|center"
11 android:clipChildren="false"
12>
Aaron Heuckroth166392f2019-01-17 16:50:59 -050013 <LinearLayout
Aaron Heuckroth75e249f2019-02-01 15:59:57 -050014 android:layout_height="wrap_content"
15 android:layout_width="match_parent"
16 android:gravity="bottom | right"
Aaron Heuckroth166392f2019-01-17 16:50:59 -050017 android:padding="0dp"
Aaron Heuckroth75e249f2019-02-01 15:59:57 -050018 android:layoutDirection="ltr"
Aaron Heuckroth166392f2019-01-17 16:50:59 -050019 android:layout_marginBottom="@dimen/global_actions_grid_container_bottom_margin"
20 >
21 <!-- For separated items-->
22 <LinearLayout
23 android:id="@+id/separated_button"
24 android:layout_width="wrap_content"
Aaron Heuckroth4ea2fdb2019-02-14 16:28:35 -050025 android:layout_height="match_parent"
Aaron Heuckroth166392f2019-01-17 16:50:59 -050026 android:layout_marginLeft="@dimen/global_actions_grid_side_margin"
27 android:layout_marginRight="@dimen/global_actions_grid_side_margin"
Aaron Heuckroth4ea2fdb2019-02-14 16:28:35 -050028 android:paddingLeft="@dimen/global_actions_grid_horizontal_padding"
29 android:paddingRight="@dimen/global_actions_grid_horizontal_padding"
30 android:paddingTop="@dimen/global_actions_grid_vertical_padding"
31 android:paddingBottom="@dimen/global_actions_grid_vertical_padding"
Aaron Heuckroth166392f2019-01-17 16:50:59 -050032 android:orientation="vertical"
33 android:background="?android:attr/colorBackgroundFloating"
Aaron Heuckroth4ea2fdb2019-02-14 16:28:35 -050034 android:gravity="center"
Aaron Heuckroth166392f2019-01-17 16:50:59 -050035 android:translationZ="@dimen/global_actions_translate"
36 />
Aaron Heuckroth166392f2019-01-17 16:50:59 -050037 <!-- Grid of action items -->
38 <com.android.systemui.globalactions.ListGridLayout
39 android:id="@android:id/list"
40 android:layout_width="wrap_content"
41 android:layout_height="wrap_content"
Aaron Heuckrotheeda8be2019-03-04 11:01:05 -050042 android:orientation="vertical"
43 android:gravity="right"
Aaron Heuckroth166392f2019-01-17 16:50:59 -050044 android:layout_marginRight="@dimen/global_actions_grid_side_margin"
45 android:translationZ="@dimen/global_actions_translate"
Aaron Heuckroth4ea2fdb2019-02-14 16:28:35 -050046 android:paddingLeft="@dimen/global_actions_grid_horizontal_padding"
47 android:paddingRight="@dimen/global_actions_grid_horizontal_padding"
48 android:paddingTop="@dimen/global_actions_grid_vertical_padding"
49 android:paddingBottom="@dimen/global_actions_grid_vertical_padding"
Aaron Heuckroth166392f2019-01-17 16:50:59 -050050 android:background="?android:attr/colorBackgroundFloating"
51 >
52 <LinearLayout
53 android:layout_width="wrap_content"
54 android:layout_height="wrap_content"
Aaron Heuckroth166392f2019-01-17 16:50:59 -050055 android:visibility="gone"
Aaron Heuckrotheeda8be2019-03-04 11:01:05 -050056 android:layoutDirection="locale"
Aaron Heuckroth166392f2019-01-17 16:50:59 -050057 />
58 <LinearLayout
59 android:layout_width="wrap_content"
60 android:layout_height="wrap_content"
Aaron Heuckroth166392f2019-01-17 16:50:59 -050061 android:visibility="gone"
Aaron Heuckrotheeda8be2019-03-04 11:01:05 -050062 android:layoutDirection="locale"
Aaron Heuckroth166392f2019-01-17 16:50:59 -050063 />
64 <LinearLayout
65 android:layout_width="wrap_content"
66 android:layout_height="wrap_content"
Aaron Heuckroth166392f2019-01-17 16:50:59 -050067 android:visibility="gone"
Aaron Heuckrotheeda8be2019-03-04 11:01:05 -050068 android:layoutDirection="locale"
Aaron Heuckroth166392f2019-01-17 16:50:59 -050069 />
70 </com.android.systemui.globalactions.ListGridLayout>
71 </LinearLayout>
72
73</com.android.systemui.globalactions.GlobalActionsGridLayout>