• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3    android:layout_width="match_parent"
4    android:layout_height="match_parent" >
5
6    <TextView
7        android:id="@+id/seconds_view"
8        android:layout_width="wrap_content"
9        android:layout_height="wrap_content"
10        android:layout_alignParentTop="true"
11        android:layout_centerHorizontal="true"
12        android:layout_marginTop="32dp"
13        android:textAppearance="?android:attr/textAppearanceMedium"
14        android:text="@string/ping_text" />
15
16    <EditText
17        android:id="@+id/edit_seconds"
18        android:layout_width="wrap_content"
19        android:layout_height="wrap_content"
20        android:layout_below="@+id/seconds_view"
21        android:layout_centerHorizontal="true"
22        android:layout_marginTop="15dp"
23        android:ems="10"
24        android:text="@string/seconds_default"
25        android:inputType="numberSigned">
26
27        <requestFocus />
28    </EditText>
29
30    <TextView
31        android:id="@+id/reminder_view"
32        android:layout_width="wrap_content"
33        android:layout_height="wrap_content"
34        android:layout_below="@+id/edit_seconds"
35        android:layout_centerHorizontal="true"
36        android:layout_marginTop="40dp"
37        android:textAppearance="?android:attr/textAppearanceMedium"
38        android:text="@string/reminder_label" />
39
40    <EditText
41        android:id="@+id/edit_reminder"
42        android:layout_width="wrap_content"
43        android:layout_height="wrap_content"
44        android:layout_alignLeft="@+id/edit_seconds"
45        android:layout_below="@+id/reminder_view"
46        android:layout_marginTop="15dp"
47        android:ems="10"
48        android:text="@string/reminder_text"
49        android:inputType="textMultiLine" />
50
51    <Button
52        android:id="@+id/ping_button"
53        style="?android:attr/buttonStyleSmall"
54        android:layout_width="wrap_content"
55        android:layout_height="wrap_content"
56        android:layout_below="@+id/edit_reminder"
57        android:layout_centerHorizontal="true"
58        android:layout_marginTop="25dp"
59        android:textAppearance="?android:attr/textAppearanceMedium"
60        android:onClick="onPingClick"
61        android:text="@string/ping" />
62
63</RelativeLayout>