Guest User

Untitled

a guest
Jun 9th, 2014
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.39 KB | None | 0 0
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2.    xmlns:tools="http://schemas.android.com/tools"
  3.    android:layout_width="match_parent"
  4.    android:layout_height="match_parent"
  5.    android:paddingBottom="@dimen/activity_vertical_margin"
  6.    android:paddingLeft="@dimen/activity_horizontal_margin"
  7.    android:paddingRight="@dimen/activity_horizontal_margin"
  8.    android:paddingTop="@dimen/activity_vertical_margin" >
  9.  
  10.     <TextView
  11.        android:id="@+id/textView2"
  12.        android:layout_width="wrap_content"
  13.        android:layout_height="wrap_content"
  14.        android:layout_below="@+id/textView1"
  15.        android:layout_centerHorizontal="true"
  16.        android:layout_marginTop="29dp"
  17.        android:text="@string/info2" />
  18.  
  19.     <TextView
  20.        android:id="@+id/textTimer"
  21.        android:layout_width="wrap_content"
  22.        android:layout_height="wrap_content"
  23.        android:layout_below="@+id/textView2"
  24.        android:layout_centerHorizontal="true"
  25.        android:layout_marginTop="49dp"
  26.        android:text="@string/timer2"
  27.        android:textSize="40sp" />
  28.  
  29.     <Button
  30.        android:id="@+id/startButton"
  31.        android:layout_width="wrap_content"
  32.        android:layout_height="wrap_content"
  33.        android:layout_below="@+id/textTimer"
  34.        android:layout_centerHorizontal="true"
  35.        android:layout_marginTop="21dp"
  36.        android:text="@string/start_timer2" />
  37.  
  38.     <Button
  39.        android:id="@+id/resetButton"
  40.        android:layout_width="wrap_content"
  41.        android:layout_height="wrap_content"
  42.        android:layout_alignRight="@+id/startButton"
  43.        android:layout_below="@+id/startButton"
  44.        android:layout_marginTop="20dp"
  45.        android:text="@string/reset_timer2" />
  46.  
  47.     <Button
  48.        android:id="@+id/resetLocationButton"
  49.        android:layout_width="wrap_content"
  50.        android:layout_height="wrap_content"
  51.        android:layout_alignParentTop="true"
  52.        android:layout_centerHorizontal="true"
  53.        android:text="@string/reset_location" />
  54.  
  55.     <TextView
  56.        android:id="@+id/textView1"
  57.        android:layout_width="wrap_content"
  58.        android:layout_height="wrap_content"
  59.        android:layout_centerHorizontal="true"
  60.        android:layout_below="@+id/resetLocationButton"
  61.        android:layout_marginTop="14dp"
  62.        android:text="@string/info" />
  63.    
  64. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment