summaryrefslogtreecommitdiff
path: root/overlay/frameworks/base/packages/SystemUI/res/layout/system_icons.xml (plain)
blob: a2121b7c57aefa33df972b88f29db3f4bf2b865c
1<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:id="@+id/system_icons"
4 android:layout_width="wrap_content"
5 android:layout_height="match_parent"
6 android:gravity="center_vertical">
7
8 <com.android.keyguard.AlphaOptimizedLinearLayout android:id="@+id/statusIcons"
9 android:layout_width="wrap_content"
10 android:layout_height="match_parent"
11 android:gravity="center_vertical"
12 android:orientation="horizontal"/>
13
14 <include layout="@layout/signal_cluster_view"
15 android:id="@+id/signal_cluster"
16 android:layout_width="wrap_content"
17 android:layout_height="wrap_content"
18 android:layout_marginStart="2.5dp"/>
19
20 <!-- battery must be padded below to match assets -->
21 <com.android.systemui.BatteryMeterView android:id="@+id/battery"
22 android:layout_height="14.5dp"
23 android:layout_width="9.5dp"
24 android:layout_marginBottom="@dimen/battery_margin_bottom"
25 android:layout_marginStart="7dp"
26 android:visibility="gone"/>
27</LinearLayout>