-
Notifications
You must be signed in to change notification settings - Fork 521
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
Fix #692: Lowfi: HelpActivity (Part 1) #724
Conversation
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.
I have just taken an overview look now. You will mainly need to change the implementation of Recyclerview
.
Thanks for the review. I will do the changes accordingly. |
@rt4914 Done with all the changes you had suggested. Also Recycler View is working fine along with clicking on the FAQ item, FAQ activity is launched. Also, the relevant Test implemented. Please review. Thanks :) |
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.
I have mentioned some implementation change to layout options in HelpActivity. PTAL
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.
I have suggested changes. In short to improvise on your PR quality you can following following steps:
- Once your PR is ready, go to
Files Changed
. - Check if there are any unnecessary files changes which you have not introduced but are still showing because of android studio, then revert those changes.
- Now go through each file in
Files Changed
and open that same file in Android Studio and do following steps:
Control + Alt + L
- formatting shortcut.- Try to solve all possible warnings given by android studio.
- Once all these changes are done, run the test cases which you have written in this PR, if any.
Once all this is done, commit again if there are any changes and then assign it to the reviewers.
@rt4914 OnCLick has been handled in Adapter instead of View Model and also every other NIT fixed, indentation fix is done, and removed any unused lines, calls, and imports. Please review :) |
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.
This looks like a very nice implementation. Just some final changes suggested. Thanks.
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.
LGTM, there are some nit changes PTAL.
Also, I think after these nit changes we can merge this PR.
@SayantanBanerjee16 There is one suggestion, do not mark conversations |
Okay, will follow this from next time. |
@rt4914 Done the NIT changes. Please merge if it's good to go. Thanks :) |
Explanation
Fixes #692:
The recycler view has been implemented through MVVM and its working fine, FAQ activity, fragment & their presenters are implemented and also tests have been written.
Checklist