Created
July 5, 2017 23:44
-
-
Save r9software/903ce515380011ea55cd4288a614fee1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <LinearLayout xmlns:android = "http://schemas.android.com/apk/res/android" | |
| xmlns:app = "http://schemas.android.com/apk/res-auto" | |
| android:orientation = "vertical" | |
| android:layout_width = "match_parent" | |
| android:background="@color/background_app_color" | |
| android:layout_height = "match_parent"> | |
| <RelativeLayout android:layout_width = "match_parent" android:layout_height = "50dp"> | |
| <ImageView android:layout_width = "24dp" android:layout_margin="13dp" | |
| android:layout_height = "24dp" | |
| android:src="@mipmap/icn_cancel" /> | |
| <TextView android:layout_width = "wrap_content" android:layout_height = "wrap_content" android:layout_centerVertical="true" | |
| android:text="@string/create_cleaner" android:layout_centerHorizontal="true" | |
| android:textSize="18sp"/> | |
| <ImageView android:layout_width = "24dp" android:layout_margin="13dp" | |
| android:layout_height = "24dp" | |
| android:layout_alignParentRight="true" | |
| android:src="@mipmap/icn_yes" /> | |
| </RelativeLayout> | |
| <de.hdodenhof.circleimageview.CircleImageView | |
| android:layout_marginLeft = "15dp" | |
| android:layout_marginBottom = "0dp" | |
| android:id = "@+id/activity_edit_cleaner_image_view_profile_pic" | |
| android:layout_width = "100dp" | |
| android:layout_height = "100dp" | |
| android:src = "@drawable/default_team" | |
| android:layout_gravity="center"/> | |
| <TextView | |
| android:layout_width = "match_parent" | |
| android:layout_height = "wrap_content" | |
| android:layout_marginLeft = "10dp" | |
| android:layout_marginRight = "10dp" | |
| android:layout_marginTop = "10dp" | |
| android:textColor = "@color/lightgray" | |
| android:textSize = "13sp" | |
| android:lineSpacingExtra = "8dp" | |
| android:text = "@string/name" | |
| android:textAllCaps = "true" | |
| android:padding = "@dimen/activity_horizontal_margin" /> | |
| <EditText | |
| android:layout_width = "match_parent" | |
| android:layout_height = "30dp" | |
| android:layout_marginLeft = "10dp" | |
| android:layout_marginRight = "10dp" | |
| android:layout_marginBottom = "10dp" | |
| android:textColor="@color/subtitle_text_color" | |
| android:background="@drawable/text_view_background" | |
| android:textSize = "15sp" /> | |
| <TextView | |
| android:layout_width = "match_parent" | |
| android:layout_height = "wrap_content" | |
| android:layout_marginLeft = "10dp" | |
| android:layout_marginRight = "10dp" | |
| android:layout_marginTop = "10dp" | |
| android:textColor = "@color/lightgray" | |
| android:textSize = "13sp" | |
| android:lineSpacingExtra = "8dp" | |
| android:text = "@string/lastname" | |
| android:textAllCaps = "true" | |
| android:padding = "@dimen/activity_horizontal_margin" /> | |
| <EditText | |
| android:layout_width = "match_parent" | |
| android:layout_height = "30dp" | |
| android:layout_marginLeft = "10dp" | |
| android:layout_marginRight = "10dp" | |
| android:layout_marginBottom = "10dp" | |
| android:textColor="@color/subtitle_text_color" | |
| android:background="@drawable/text_view_background" | |
| android:textSize = "15sp" /> | |
| <TextView | |
| android:layout_width = "match_parent" | |
| android:layout_height = "wrap_content" | |
| android:layout_marginLeft = "10dp" android:layout_marginRight = "10dp" android:layout_marginTop = "10dp" | |
| android:textColor = "@color/lightgray" | |
| android:textSize = "13sp" | |
| android:lineSpacingExtra = "8dp" | |
| android:text = "@string/payroll" | |
| android:textAllCaps = "true" | |
| android:padding = "@dimen/activity_horizontal_margin" /> | |
| <LinearLayout android:layout_width = "match_parent" android:orientation="horizontal" android:layout_height = | |
| "wrap_content"> | |
| <com.weiwangcn.betterspinner.library.material.MaterialBetterSpinner | |
| android:id="@+id/android_material_design_spinner" | |
| android:layout_width="wrap_content" | |
| android:layout_weight=".5" | |
| android:layout_height="30dp" | |
| android:hint="Payroll" | |
| android:textColorHint="#05ab9a" | |
| app:met_floatingLabel="normal" /> | |
| <EditText | |
| android:layout_width = "wrap_content" | |
| android:layout_weight=".5" | |
| android:layout_height = "30dp" | |
| android:layout_marginLeft = "10dp" | |
| android:layout_marginRight = "10dp" | |
| android:layout_marginBottom = "10dp" | |
| android:textColor="@color/subtitle_text_color" | |
| android:background="@drawable/text_view_background" | |
| android:textSize = "15sp" /> | |
| </LinearLayout> | |
| <TextView | |
| android:layout_width = "match_parent" | |
| android:layout_height = "wrap_content" | |
| android:layout_marginLeft = "10dp" | |
| android:layout_marginRight = "10dp" | |
| android:layout_marginTop = "10dp" | |
| android:textColor = "@color/lightgray" | |
| android:textSize = "13sp" | |
| android:lineSpacingExtra = "8dp" | |
| android:text = "@string/team_assigned" | |
| android:textAllCaps = "true" | |
| android:padding = "@dimen/activity_horizontal_margin" /> | |
| <TextView | |
| android:layout_width = "match_parent" | |
| android:layout_height = "30dp" | |
| android:layout_marginLeft = "10dp" | |
| android:layout_marginRight = "10dp" | |
| android:text="Teams assigned 1, Team Leader" | |
| android:gravity="center|left" | |
| android:layout_marginBottom = "10dp" | |
| android:textColor="@color/subtitle_text_color" | |
| android:background="@drawable/text_view_background" | |
| android:textSize = "15sp" /> | |
| <TextView | |
| android:layout_width = "wrap_content" | |
| android:layout_height = "wrap_content" | |
| android:textSize = "15sp" | |
| android:layout_gravity = "right" | |
| android:layout_marginRight = "5dp" | |
| android:textAllCaps = "true" | |
| android:textColor = "@color/colorPrimary" | |
| android:text = "@string/assign_to_team_add" /> | |
| <TextView | |
| android:layout_width = "match_parent" | |
| android:layout_height = "wrap_content" | |
| android:layout_marginLeft = "10dp" | |
| android:layout_marginRight = "10dp" | |
| android:layout_marginTop = "10dp" | |
| android:textColor = "@color/lightgray" | |
| android:textSize = "13sp" | |
| android:lineSpacingExtra = "8dp" | |
| android:text = "@string/phone_number" | |
| android:textAllCaps = "true" | |
| android:padding = "@dimen/activity_horizontal_margin" /> | |
| <LinearLayout android:layout_width = "match_parent" android:layout_height = "wrap_content"> | |
| <EditText | |
| android:layout_width = "match_parent" | |
| android:layout_height = "30dp" | |
| android:layout_marginLeft = "10dp" | |
| android:layout_marginRight = "10dp" | |
| android:layout_marginBottom = "10dp" | |
| android:textColor="@color/subtitle_text_color" | |
| android:background="@drawable/text_view_background" | |
| android:textSize = "15sp" /> | |
| </LinearLayout> | |
| <TextView | |
| android:layout_width = "wrap_content" | |
| android:layout_height = "wrap_content" | |
| android:textSize = "15sp" | |
| android:layout_gravity = "right" | |
| android:layout_marginRight = "5dp" | |
| android:textAllCaps = "true" | |
| android:textColor = "@color/colorPrimary" | |
| android:text = "@string/add_alternative_number" /> | |
| <TextView | |
| android:layout_width = "match_parent" | |
| android:layout_height = "wrap_content" | |
| android:layout_marginLeft = "10dp" | |
| android:layout_marginRight = "10dp" | |
| android:layout_marginTop = "10dp" | |
| android:textColor = "@color/lightgray" | |
| android:textSize = "13sp" | |
| android:lineSpacingExtra = "8dp" | |
| android:text = "@string/snn" | |
| android:textAllCaps = "true" | |
| android:padding = "@dimen/activity_horizontal_margin" /> | |
| <EditText | |
| android:layout_width = "match_parent" | |
| android:layout_height = "30dp" | |
| android:layout_marginLeft = "10dp" | |
| android:layout_marginRight = "10dp" | |
| android:layout_marginBottom = "10dp" | |
| android:textColor="@color/subtitle_text_color" | |
| android:background="@drawable/text_view_background" | |
| android:textSize = "15sp" /> | |
| <TextView | |
| android:layout_width = "match_parent" | |
| android:layout_height = "wrap_content" | |
| android:layout_marginLeft = "10dp" | |
| android:layout_marginRight = "10dp" | |
| android:layout_marginTop = "10dp" | |
| android:textColor = "@color/lightgray" | |
| android:textSize = "13sp" | |
| android:lineSpacingExtra = "8dp" | |
| android:text = "@string/address" | |
| android:textAllCaps = "true" | |
| android:padding = "@dimen/activity_horizontal_margin" /> | |
| <EditText | |
| android:layout_width = "match_parent" | |
| android:layout_height = "30dp" | |
| android:layout_marginLeft = "10dp" | |
| android:layout_marginRight = "10dp" | |
| android:layout_marginBottom = "10dp" | |
| android:textColor="@color/subtitle_text_color" | |
| android:background="@drawable/text_view_background" | |
| android:textSize = "15sp" /> | |
| <TextView | |
| android:layout_width = "match_parent" | |
| android:layout_height = "wrap_content" | |
| android:layout_marginLeft = "10dp" | |
| android:layout_marginRight = "10dp" | |
| android:layout_marginTop = "10dp" | |
| android:textColor = "@color/lightgray" | |
| android:textSize = "13sp" | |
| android:lineSpacingExtra = "8dp" | |
| android:text = "@string/bio" | |
| android:textAllCaps = "true" | |
| android:padding = "@dimen/activity_horizontal_margin" /> | |
| <EditText | |
| android:layout_width = "match_parent" | |
| android:layout_height = "wrap_content" | |
| android:minHeight="30dp" | |
| android:layout_marginLeft = "10dp" | |
| android:layout_marginRight = "10dp" | |
| android:layout_marginBottom = "10dp" | |
| android:textColor="@color/subtitle_text_color" | |
| android:background="@drawable/text_view_background" | |
| android:textSize = "15sp" /> | |
| <Button | |
| android:text = "@string/create" | |
| android:onClick = "onClick" | |
| android:layout_width = "match_parent" | |
| android:layout_height = "wrap_content" | |
| android:id = "@+id/employeeButton" | |
| android:textColor = "@color/white" | |
| android:background = "@drawable/round_corners" | |
| android:layout_margin="24dp"/> | |
| </LinearLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment