Giter Site home page Giter Site logo

Comments (5)

JakeWharton avatar JakeWharton commented on June 17, 2024

Can you show an example of how you would use it?

On Sun, Sep 13, 2015, 7:27 PM Justin Hall [email protected] wrote:

New to RxJava and RxAndroid, I started out by doing some user input
validation previously implemented via TextWatcher. I realized while
attempting to leverage the filter operator that the Observable returned
from RxTextView.textChanges only emits the new text. Would it be
beneficial to add a similar Observable that also emitted the before value
(from TextWatcher#beforeTextChanged
https://developer.android.com/reference/android/text/TextWatcher.html#beforeTextChanged%28java.lang.CharSequence,%20int,%20int,%20int%29
)?


Reply to this email directly or view it on GitHub
#137.

from rxbinding.

wKovacs64 avatar wKovacs64 commented on June 17, 2024

I was thinking something like:

RxTextView.textChangesWithBefore(textView)
        .filter(this::compareBeforeAndAfter)
        .subscribe(beforeAndAfterPair -> {
            // ...
        });

Just imagining Pair in the example here, haven't put much thought into the best way to represent the two values.

from rxbinding.

JakeWharton avatar JakeWharton commented on June 17, 2024

Got it. Will look into adding.

On Sun, Sep 13, 2015, 9:05 PM Justin Hall [email protected] wrote:

I was thinking something like:

RxTextView.textChangesWithBefore(textView)
.filter(this::compareBeforeAndAfter)
.subscribe(beforeAndAfterPair -> {
// ...
});

Just imagining Pair in the example here, haven't put much thought into
the best way to represent the two values.


Reply to this email directly or view it on GitHub
#137 (comment)
.

from rxbinding.

wKovacs64 avatar wKovacs64 commented on June 17, 2024

Cool, thanks for considering it.

from rxbinding.

xfumihiro avatar xfumihiro commented on June 17, 2024

@wKovacs64 Both before and after text change event bindings are added in #145.
You can then use combine operators with filter to do the job.

from rxbinding.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.