• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<FrameLayout
3    xmlns:android="http://schemas.android.com/apk/res/android"
4    android:id="@+id/low_light_clock_dream"
5    android:layout_width="match_parent"
6    android:layout_height="match_parent"
7    android:background="@color/low_light_clock_background_color">
8
9    <TextClock
10        android:id="@+id/low_light_text_clock"
11        android:layout_width="match_parent"
12        android:layout_height="@dimen/low_light_clock_text_size"
13        android:layout_gravity="center"
14        android:fontFamily="google-sans-clock"
15        android:gravity="center_horizontal"
16        android:textColor="@color/low_light_clock_text_color"
17        android:autoSizeTextType="uniform"
18        android:autoSizeMaxTextSize="@dimen/low_light_clock_text_size"
19        android:format12Hour="h:mm"
20        android:format24Hour="H:mm"/>
21
22    <TextView
23        android:id="@+id/charging_status_text_view"
24        android:layout_width="wrap_content"
25        android:layout_height="wrap_content"
26        android:layout_marginBottom="@dimen/keyguard_indication_margin_bottom"
27        android:gravity="center"
28        android:minHeight="@dimen/low_light_clock_charging_text_min_height"
29        android:layout_gravity="center_horizontal|bottom"
30        android:paddingStart="@dimen/keyguard_indication_text_padding"
31        android:paddingEnd="@dimen/keyguard_indication_text_padding"
32        android:textAppearance="@style/TextAppearance.Keyguard.BottomArea"
33        android:textSize="@dimen/low_light_clock_charging_text_size"
34        android:textFontWeight="@integer/low_light_clock_charging_text_font_weight"
35        android:maxLines="2"
36        android:ellipsize="end"
37        android:accessibilityLiveRegion="polite" />
38  </FrameLayout>
39
40