forked from adenda/adenda-sample-unlock-widget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadenda_sample_unlock_layout.xml
40 lines (35 loc) · 1.44 KB
/
adenda_sample_unlock_layout.xml
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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:adenda="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000000" >
<Button
android:id="@+id/btn_learn_more"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:text="Learn More" />
<FrameLayout
android:id="@+id/adenda_content_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/btn_learn_more"
android:layout_alignParentLeft="true"
android:layout_below="@+id/managed_custom_date_time_fragment_holder">
</FrameLayout>
<FrameLayout
android:id="@+id/managed_custom_date_time_fragment_holder"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="left">
</FrameLayout>
<sdk.adenda.widget.AdendaContextButton
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_alignParentTop="true"
android:layout_alignParentRight="true"
android:background="@drawable/ic_menu"/>
</RelativeLayout>