1<?xml version="1.0" encoding="utf-8"?>
2<RelativeLayout
3    xmlns:android="http://schemas.android.com/apk/res/android"
4    android:layout_width="match_parent"
5    android:layout_height="match_parent"
6    >
7    <TextClock
8        android:id="@+id/time"
9        style="@style/widget_big"
10        android:layout_width="match_parent"
11        android:layout_height="wrap_content"
12        android:layout_above="@id/date"
13        android:letterSpacing="0.03"
14        android:gravity="center_horizontal"
15        android:format12Hour="@string/keyguard_widget_12_hours_format"
16        android:format24Hour="@string/keyguard_widget_24_hours_format"
17        />
18
19    <TextClock
20        android:id="@+id/date"
21        style="@stype/widget_big"
22        android:layout_width="match_parent"
23        android:layout_height="wrap_content"
24        android:layout_centerInParent="true"
25        android:letterSpacing="0.03"
26        android:gravity="center_horizontal"
27        android:format12Hour="EEE, MMM d"
28        android:format24Hour="EEE, MMM d"
29        />
30</RelativeLayout>
31