Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.70 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    xmlns:app="http://schemas.android.com/apk/res-auto"
  4.    xmlns:tools="http://schemas.android.com/tools"
  5.    android:layout_width="match_parent"
  6.    android:layout_height="match_parent"
  7.    tools:context="com.example.dabbydunkerton.alaramclock.AddLocatinalrm">
  8.  
  9.     <LinearLayout
  10.        android:layout_width="352dp"
  11.        android:layout_height="217dp"
  12.        android:orientation="vertical"
  13.        tools:layout_editor_absoluteX="8dp"
  14.        tools:layout_editor_absoluteY="8dp">
  15.  
  16.         <CheckBox
  17.            android:id="@+id/checkBox2"
  18.            android:layout_width="wrap_content"
  19.            android:layout_height="wrap_content"
  20.            android:layout_weight="1"
  21.            android:text="Location alarm on" />
  22.  
  23.         <TextView
  24.            android:id="@+id/textView"
  25.            android:layout_width="wrap_content"
  26.            android:layout_height="wrap_content"
  27.            android:layout_weight="1"
  28.            android:text="Number of minutes between alarm:" />
  29.  
  30.         <EditText
  31.            android:id="@+id/editText"
  32.            android:layout_width="match_parent"
  33.            android:layout_height="wrap_content"
  34.            android:layout_weight="1"
  35.            android:ems="10"
  36.            android:inputType="number" />
  37.  
  38.         <Button
  39.            android:id="@+id/button2"
  40.            android:layout_width="match_parent"
  41.            android:layout_height="wrap_content"
  42.            android:layout_weight="1"
  43.            android:text="Update changes" />
  44.  
  45.     </LinearLayout>
  46. </android.support.constraint.ConstraintLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement