blob: 63a99a3a7e5ee5a4445d6a38ce759badfe9c5655 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_height="match_parent"
android:layout_width="match_parent">
<ImageView
android:id="@+id/phone_button"
android:gravity="center_horizontal"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_centerHorizontal="true"
android:src="@drawable/lockscreen_shortcuts_phone_background" />
<TextView
android:textSize="15sp"
android:textColor="#424242"
android:gravity="center"
android:layout_below="@id/phone_button"
android:layout_alignStart="@id/phone_button"
android:layout_alignEnd="@id/phone_button"
android:text="@string/lockscreen_message"
android:layout_width="wrap_content"
android:layout_height="match_parent" />
<RelativeLayout
android:layout_alignEnd="@id/phone_button"
android:layout_alignStart="@id/phone_button"
android:layout_alignBottom="@id/phone_button"
android:layout_marginStart="@dimen/phone_side_padding"
android:layout_marginEnd="@dimen/phone_side_padding"
android:paddingBottom="@dimen/phone_bottom_padding"
android:clipChildren="false"
android:layout_width="match_parent"
android:layout_height="@dimen/phone_height">
<ImageView
android:layout_marginStart="@dimen/lockscreen_icon_side_padding"
android:layout_alignParentBottom="true"
android:layout_alignParentStart="true"
android:clickable="true"
android:scaleType="center"
android:id="@+id/left_button"
android:layout_width="@dimen/keyguard_affordance_width"
android:layout_height="@dimen/keyguard_affordance_height" />
<ImageView
android:id="@+id/middle_button"
android:tint="@color/lockscreen_middle_button_tint_color"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
android:scaleType="center"
android:src="@drawable/ic_lock_24dp"
android:layout_width="@dimen/keyguard_affordance_width"
android:layout_height="@dimen/keyguard_affordance_height" />
<ImageView
android:layout_marginEnd="@dimen/lockscreen_icon_side_padding"
android:id="@+id/right_button"
android:clickable="true"
android:scaleType="center"
android:layout_alignParentBottom="true"
android:layout_alignParentEnd="true"
android:layout_width="@dimen/keyguard_affordance_width"
android:layout_height="@dimen/keyguard_affordance_height" />
</RelativeLayout>
</RelativeLayout>
|