Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:padding="16dp">
- <TextView
- android:id="@+id/time_view"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="0:00:00"
- android:textSize="48sp"
- android:layout_centerHorizontal="true"/>
- <Button
- android:id="@+id/start_button"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_below="@+id/time_view"
- android:layout_marginTop="16dp"
- android:text="Start"
- android:onClick="onClickStart"/>
- <Button
- android:id="@+id/stop_button"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_below="@+id/time_view"
- android:layout_marginTop="16dp"
- android:layout_toRightOf="@+id/start_button"
- android:layout_marginLeft="16dp"
- android:text="Stop"
- android:onClick="onClickStop"/>
- <Button
- android:id="@+id/reset_button"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_below="@+id/time_view"
- android:layout_marginTop="16dp"
- android:layout_toRightOf="@+id/stop_button"
- android:layout_marginLeft="16dp"
- android:text="Reset"
- android:onClick="onClickReset"/>
- </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement