~vedu/mafia-android/master

« back to all changes in this revision

Viewing changes to res/layout/activity_next_person.xml

  • Committer: Vedant Agrwala
  • Date: 2013-11-14 09:10:05 UTC
  • Revision ID: vedant.kota@gmail.com-20131114091005-mv8oabe8o4fugzo8
Initial work

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
    tools:context=".NextPersonActivity" >
 
10
 
 
11
    <LinearLayout
 
12
        android:layout_width="wrap_content"
 
13
        android:layout_height="wrap_content"
 
14
        android:layout_alignParentLeft="true"
 
15
        android:layout_alignParentRight="true"
 
16
        android:layout_centerVertical="true"
 
17
        android:orientation="vertical" >
 
18
 
 
19
        <TextView
 
20
            android:id="@+id/enterCredentialsText"
 
21
            android:layout_width="match_parent"
 
22
            android:layout_height="wrap_content"
 
23
            android:gravity="center"
 
24
            android:text="Enter your first name and create a PIN to use for next login" />
 
25
 
 
26
        <EditText
 
27
            android:id="@+id/nameEditText"
 
28
            android:layout_width="match_parent"
 
29
            android:layout_height="wrap_content"
 
30
            android:hint="enter Name" />
 
31
 
 
32
        <EditText
 
33
            android:id="@+id/pinEditText"
 
34
            android:layout_width="match_parent"
 
35
            android:layout_height="wrap_content"
 
36
            android:hint="enter PIN" />
 
37
 
 
38
        <Button
 
39
            android:id="@+id/loginButton"
 
40
            android:layout_width="match_parent"
 
41
            android:layout_height="wrap_content"
 
42
            android:onClick="loginButtonPressed"
 
43
            android:text="Create Login" />
 
44
 
 
45
    </LinearLayout>
 
46
 
 
47
</RelativeLayout>