-
Notifications
You must be signed in to change notification settings - Fork 533
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 part of #151:Text input lowfi UI part 1 #220
Merged
Merged
Conversation
This file contains 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
tests to verify correctness. Also, added a method to facilitate notifying of DataProvider changes on the UI thread.
…dered initialization.
… it up to the data controller, and start adding tests.
Conflicts: domain/build.gradle domain/src/main/java/org/oppia/domain/exploration/ExplorationDataController.kt Also, migrate the data controller to the retriever.
AnswerClassificationController, and attempted to make ExplorationProgressController thread-safe. The thread-safety led to significant interface changes in the progress controller, and led to discovering some issues with the mediator live data approach to interop coroutines and LiveData. This locking mechanism will need to change since the optimal solution requires resolving #90.
with the current MediatorLiveData implementation (see #90 for more context). Fix existing progress controller tests and add a few more. All current progress controller tests are passing.
…ation support for the second test exploration (about_oppia).
…-controller' into introduce-load-exploration-part-1
added items in # app/src/main/res/values/colors.xml # app/src/main/res/values/dimens.xml
…wfi-xml-part-1' of https://github.com/oppia/oppia-android into text-input-lowfi-xml-part-1
added items in # app/src/main/res/values/colors.xml # app/src/main/res/values/dimens.xml
…/github.com/oppia/oppia-android into text-input-lowfi-xml-part-1
…xploration-part-1
…m/oppia/oppia-android into text-input-lowfi-xml-part-1
rt4914
changed the base branch from
develop
to
introduce-load-exploration-part-1
October 9, 2019 10:09
rt4914
changed the base branch from
introduce-load-exploration-part-1
to
develop
October 9, 2019 10:09
rt4914
changed the base branch from
develop
to
introduce-load-exploration-part-1
October 9, 2019 10:10
rt4914
approved these changes
Oct 9, 2019
app/src/main/res/values/colors.xml
Outdated
@@ -17,4 +17,11 @@ | |||
<color name="audioComponentBackground">@color/oppiaDarkBlue</color> | |||
<!-- SUBMIT BUTTON INACTIVE --> | |||
<color name="submitButtonInactive">#56000000</color> | |||
<color name="grey">#CCCCCC</color> | |||
<!-- INPUT LAYOUT EDITTEXT--> |
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.
Nit:
<!-- INPUT LAYOUT EDITTEXT -->
nikitamarysolomanpvt
changed the title
Text input lowfi UI part 1
Fix part of #151:Text input lowfi UI part 1
Oct 9, 2019
nikitamarysolomanpvt
changed the base branch from
introduce-load-exploration-part-1
to
develop
October 9, 2019 10:24
6 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Replicated from #190
Part 1: This PR contains basic XML files for creating edit text of input type views.
Reference Mocks & Reference Design Doc
#190