|  | 
|  | 1 | +<LinearLayout 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:gravity="center_horizontal" | 
|  | 6 | + android:orientation="vertical" | 
|  | 7 | + android:paddingBottom="@dimen/activity_vertical_margin" | 
|  | 8 | + android:paddingLeft="@dimen/activity_horizontal_margin" | 
|  | 9 | + android:paddingRight="@dimen/activity_horizontal_margin" | 
|  | 10 | + android:paddingTop="@dimen/activity_vertical_margin" | 
|  | 11 | + tools:context="org.codedocs.codedocsapp.Register"> | 
|  | 12 | + | 
|  | 13 | + <!-- Login progress --> | 
|  | 14 | + <ProgressBar | 
|  | 15 | + android:id="@+id/login_progress" | 
|  | 16 | + style="?android:attr/progressBarStyleLarge" | 
|  | 17 | + android:layout_width="wrap_content" | 
|  | 18 | + android:layout_height="wrap_content" | 
|  | 19 | + android:layout_marginBottom="8dp" | 
|  | 20 | + android:visibility="gone" /> | 
|  | 21 | + | 
|  | 22 | + <ScrollView | 
|  | 23 | + android:id="@+id/login_form" | 
|  | 24 | + android:layout_width="match_parent" | 
|  | 25 | + android:layout_height="match_parent"> | 
|  | 26 | + | 
|  | 27 | + <LinearLayout | 
|  | 28 | + android:id="@+id/email_login_form" | 
|  | 29 | + android:layout_width="match_parent" | 
|  | 30 | + android:layout_height="wrap_content" | 
|  | 31 | + android:orientation="vertical"> | 
|  | 32 | + | 
|  | 33 | + | 
|  | 34 | + <EditText | 
|  | 35 | + android:layout_width="match_parent" | 
|  | 36 | + android:layout_height="wrap_content" | 
|  | 37 | + android:id="@+id/email_register" | 
|  | 38 | + android:text="@string/email_id" | 
|  | 39 | + android:inputType="textEmailAddress"/> | 
|  | 40 | + <EditText | 
|  | 41 | + android:layout_width="match_parent" | 
|  | 42 | + android:layout_height="wrap_content" | 
|  | 43 | + android:id="@+id/password_registration" | 
|  | 44 | + android:hint="Password" | 
|  | 45 | + android:inputType="textPassword" | 
|  | 46 | + /> | 
|  | 47 | + | 
|  | 48 | + <Button | 
|  | 49 | + android:id="@+id/email_sign_in_button" | 
|  | 50 | + style="?android:textAppearanceSmall" | 
|  | 51 | + android:layout_width="match_parent" | 
|  | 52 | + android:layout_height="wrap_content" | 
|  | 53 | + android:layout_marginTop="16dp" | 
|  | 54 | + android:text="@string/action_sign_in" | 
|  | 55 | + android:textStyle="bold" /> | 
|  | 56 | + <TextView | 
|  | 57 | + android:layout_width="match_parent" | 
|  | 58 | + android:layout_height="wrap_content" | 
|  | 59 | + android:textAlignment="center" | 
|  | 60 | + android:text="@string/already_a_member_sing_in" | 
|  | 61 | + android:id="@+id/already_member" /> | 
|  | 62 | + | 
|  | 63 | + | 
|  | 64 | + </LinearLayout> | 
|  | 65 | + </ScrollView> | 
|  | 66 | +</LinearLayout> | 
0 commit comments