-
Notifications
You must be signed in to change notification settings - Fork 4
Refactored UX (#2) #3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
android:layout_height="0dp" | ||
android:layout_weight="1" | ||
android:hint="name" | ||
android:layout_marginRight="20dp" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
MarginRight and MarginLeft is deprecated now, use marginStart and marginEnd instead
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@therealshabi Did the required changes.
android:layout_marginRight="20dp" | ||
app:met_textColorHint="#bdbdbd" | ||
android:layout_weight="1" | ||
android:hint="enrollment number(only for JIIT students)" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add all the hardcoded Strings in the strings.xml file and use from there
|
||
|
||
<RadioButton | ||
android:id="@+id/hosteller" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
id should be like rb_hosteller, hosteller does not imply that this is a radioButton
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Review and resolve the PR comments (Recommended but not necessary)
@therealshabi Done all the changes, as requested. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PR Comments Resolved
Fixes #2
I've also Reformatted Code of activity_register.xml to make it more readable.