-
Notifications
You must be signed in to change notification settings - Fork 637
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
Add bindView implementation and tests #12
Merged
Merged
Changes from 6 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
377dcf3
Add bindView implementation and tests
ZacSweers abe883d
Update to android gradle plugin 1.3.0
ZacSweers b546879
Add missing trello copyright headers
ZacSweers 874e89f
Use RxBinding 0.2.0 and make bindView use its detaches() call under t…
ZacSweers b4c72bb
Remove unnecessary newlines
ZacSweers 66bd497
Better generics and fix handling for non-"Object" classes
ZacSweers e8fdbdb
Use ? extends E to allow for subclasses
ZacSweers File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
37 changes: 37 additions & 0 deletions
37
rxlifecycle/src/test/java/com/trello/rxlifecycle/TestUtil.java
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/** | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.trello.rxlifecycle; | ||
|
||
import android.view.View; | ||
|
||
import org.robolectric.util.ReflectionHelpers; | ||
|
||
import java.util.concurrent.CopyOnWriteArrayList; | ||
|
||
public class TestUtil { | ||
|
||
/** | ||
* Manually retrieve the view's attach state change listeners of an event. Robolectric | ||
* doesn't currently support manually firing these, and it would seem the events are not called | ||
* in normal Robolectric usage either. | ||
* | ||
* @param view View with listeners to notify | ||
*/ | ||
static CopyOnWriteArrayList<View.OnAttachStateChangeListener> getAttachStateChangeListeners(View view) { | ||
Object listenerInfo = ReflectionHelpers.callInstanceMethod(view, "getListenerInfo"); | ||
return ReflectionHelpers.getField(listenerInfo, "mOnAttachStateChangeListeners"); | ||
} | ||
|
||
} |
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.
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.
Should this be
<E>
or<? extends E>
? I only ask because we're sort of copyingtakeUntil
and that's what they do (again, not exactly sure why since I suck at generics).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.
Mimic Observable#takeUntil and use
<? extends E>
.Btw, this is the difference between the three:
Observable<E>
an Observable that only outputs E and exactly that.Observable<? extends E>
an Observable that outputs anything with an upperbound of E (so any descendant of E or E itself).Observable<?>
an Observable that outputs anything, can't use that here because the Operator (Transformer) expects a type!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.
Done in e8fdbdb