-
I found that if the file isn't change,that butterknife also not generate the binding code.so its can't found the binding.like this:
`Looking up binding for *.*.ListViewAdapter$ViewHolder`
`Not foun…
edsky updated
7 years ago
-
I'm attempting to use Sqlbrite in an app using RxJava2. I can use the interop library to convert the V1 observable to a V2 observable, but I also realized the wrapDatabaseHelper() function takes a V1…
-
Hi,
I really dislike the RxJavaMath library because it requires me to wrap my existing observables.
With Kotlin we can easily do this with extension methods.
With your permission, would love to add …
-
https://github.com/JakeWharton/RxBinding/blob/master/rxbinding-design-kotlin/src/main/kotlin/com/jakewharton/rxbinding/support/design/widget/RxTextInputLayout.kt#L28
Not using `CharSequence?` means t…
-
Hi. I'm trying to implement rxbinding in my app and I haven't found any examples how to do that.
Actually I'm interested in handling AutoComplete events. Can anyone help me?
-
I am currently working on an Android application, and using Parse SDK as a backend service. I am running the backend on Heroku. Suddenly, whenever I tried to log the user into the server, it returns t…
-
Hi. What I want is to turn RxBinding callback back to my acitivity.
Restartable is not suitable for that, however I need my view object in order to call the callback method. getView is depricated, s…
-
I found I cannot use it to manager all my click code together. I alway setOnClickListenr for the same one ,and than I can create less OnClickListener object.
-
It would be useful to have something equivalent to https://github.com/JakeWharton/RxBinding for reduks
-
Sometimes we don’t care about about value in stream but only information about flow (Next, Complete).
The most evident case is when we use RX in UI, we can create stream of data inside view but what …