Jake Wharton
Jake Wharton
Each ``` java public Optional firstOption() { return this.stream().findFirst(); } ``` Needs rewritten to ``` java public Optional firstOption() { return Iterables.firstOption(this); } ``` Where `Iterables.firstOption` is a util class...
Each ``` java public Optional lastOption() { return this.stream().reduce((a, b) -> { return b; }); } ``` Needs rewritten to ``` java public Optional lastOption() { return Iterables.lastOption(this); } ```...
Send a PR if you like. On Mon, Dec 5, 2016, 10:09 AM MickSparrow wrote: > For now scroll change events are supported only for @TargetApi(M). > > @TargetApi(M) >...
Don't have much bandwidth here. Maybe send a PR to the sample to create a similar situation so we can repro?
Can you update our sample to replicate the problematic behavior in a PR? And perhaps include the fix?
I'm not really sure what you're asking. RxBinding just adapts listener-based callbacks to RxJava-based ones. Can you model what you want with the listener? If so, it should be easy...
I have thought about listener factories. For when you need to pass a `View.OnClickListener` to something but want it hooked up to an `Observable` on your end (without the manual...
I believe you could also add .unsubscribeOn(mainThread()) which would delay unsubscription with a post to the next frame. On Thu, Nov 12, 2015 at 9:04 AM Daniel Lew [email protected] wrote:...
Has a bug been filed on b.android.com for this ever? I'm struggling to have any desire to fix this in the library.
Great! I'll take care of it. On Fri, Jun 24, 2016, 1:40 AM Mikhail Demerzov [email protected] wrote: > https://code.google.com/p/android/issues/detail?id=190399 is about that. > Seems pretty dead. > > — >...