alarm_alert.xml 4.5 KB
Newer Older
1 2 3 4 5 6
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2007 The Android Open Source Project

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at
7

8
          http://www.apache.org/licenses/LICENSE-2.0
9

10 11 12 13 14 15 16
     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->

17
<RelativeLayout
18
    xmlns:android="http://schemas.android.com/apk/res/android"
19
    xmlns:dc="http://schemas.android.com/apk/res-auto"
20 21
    android:layout_width="match_parent"
    android:layout_height="match_parent"
Peter Ng's avatar
Peter Ng committed
22
    android:background="@color/black">
23

24
    <LinearLayout
Peter Ng's avatar
Peter Ng committed
25
        android:layout_width="wrap_content"
26 27
        android:layout_height="match_parent"
        android:orientation="vertical"
28
        android:layout_marginTop="32sp"
Peter Ng's avatar
Peter Ng committed
29
        android:layout_centerHorizontal="true"
30
        android:layout_alignParentTop="true"
31
        >
32

33
        <TextView android:id="@+id/alertTitle"
Peter Ng's avatar
Peter Ng committed
34 35
            android:singleLine="true"
            android:ellipsize="end"
36
            style="@style/header_not_caps"
37
            android:paddingLeft="@dimen/label_margin_big"
Isaac Katzenelson's avatar
Isaac Katzenelson committed
38
            android:paddingStart="@dimen/label_margin_big"
39 40
            android:paddingBottom="@dimen/label_margin_small"
            android:textColor="@color/clock_white"
Peter Ng's avatar
Peter Ng committed
41 42
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"/>
43

44 45
        <com.android.deskclock.DigitalClock
            android:id="@+id/digitalClock"
Peter Ng's avatar
Peter Ng committed
46
            android:layout_width="wrap_content"
47 48 49
            android:layout_height="wrap_content"
            android:gravity="top"
            android:paddingBottom="24dp"
50
            android:baselineAligned="false"
51
            >
52
            <com.android.deskclock.ZeroTopPaddingTextView
53 54 55 56
                android:id="@+id/timeDisplayHours"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:paddingRight="@dimen/time_margin_right"
Isaac Katzenelson's avatar
Isaac Katzenelson committed
57
                android:paddingEnd="@dimen/time_margin_right"
58 59 60 61
                android:singleLine="true"
                android:ellipsize="none"
                style="@style/big_bold"
                android:textColor="@color/clock_white"/>
62
            <com.android.deskclock.ZeroTopPaddingTextView
63 64 65 66 67 68 69
                android:id="@+id/timeDisplayMinutes"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                style="@style/big_thin"
                android:singleLine="true"
                android:ellipsize="none"
                android:textColor="@color/clock_white"/>
70
            <com.android.deskclock.ZeroTopPaddingTextView
71 72
                android:id="@+id/am_pm"
                android:layout_height="wrap_content"
73
                android:layout_width="wrap_content"
74 75 76 77 78 79 80 81
                style="@style/label"
                android:singleLine="true"
                android:ellipsize="none"
                android:textColor="@color/clock_white"
                />
        </com.android.deskclock.DigitalClock>
    </LinearLayout>

82 83 84 85 86 87 88
    <com.android.deskclock.widget.multiwaveview.GlowPadView
        android:id="@+id/glow_pad_view"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="@dimen/glowpadview_margin_bottom"
        android:focusable="true"
        android:layout_alignParentBottom="true"
89
        android:layout_centerHorizontal="true"
90
        android:gravity="center"
91
        android:layout_gravity="center_vertical"
92

93 94 95 96 97 98 99 100 101 102 103 104 105
        dc:targetDrawables="@array/snooze_dismiss_drawables"
        dc:targetDescriptions="@array/snooze_dismiss_descriptions"
        dc:directionDescriptions="@array/snooze_dismiss_direction_descriptions"
        dc:handleDrawable="@drawable/ic_alarm_alert_touch_handle"
        dc:outerRingDrawable="@drawable/ic_alarm_alert_outerring"
        dc:outerRadius="@dimen/glowpadview_target_placement_radius"
        dc:innerRadius="@dimen/glowpadview_inner_radius"
        dc:snapMargin="@dimen/glowpadview_snap_margin"
        dc:feedbackCount="1"
        dc:vibrationDuration="20"
        dc:glowRadius="@dimen/glowpadview_glow_radius"
        dc:pointDrawable="@drawable/ic_lockscreen_glowdot"
        />
106

107
</RelativeLayout>