rx-binding Questions
1
Solved
I wanna use RxJava binding APIs for Android UI widgets in my project.
Therefore following the guidance as per this site 'https://github.com/JakeWharton/RxBinding'
But I am unable to import any A...
Updo asked 28/5, 2019 at 9:4
2
Solved
When the user types into the SearchView widget, the app should make an
API call (in background thread) to fetch search results from server, and display them (in UI thread) in RecyclerView.
I use t...
Melessa asked 18/9, 2016 at 14:43
4
Solved
My current Android application allows users to search for content remotely.
e.g. The user is presented with an EditText which accepts their search strings and triggers a remote API call that retur...
Xe asked 14/3, 2018 at 12:17
1
Solved
I have tried with these solutions - Solution 1 , Solution 2
Here are my gradle dependencies.
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
//noinspection GradleCompati...
Starlight asked 6/3, 2018 at 5:31
2
Solved
I'm using RxJava2, Kotlin-1.1 along with RxBindings in my project.
I have simple login screen with 'login' button disabled by default, I want to enable the button only when username and password e...
Microstructure asked 10/3, 2017 at 18:52
4
Solved
There is how I use RxBinding with Kotlin:
override fun onViewCreated(view: View?, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
reset_password_text_view.clicks().s...
Childhood asked 5/1, 2017 at 10:2
1
Solved
I have a RecyclerView in Fragment, item clicks are handled using RxJava2 as explained in this SO answer, It's working fine in non fragments.
private PublishSubject<Place> itemViewClickSubjec...
Folly asked 8/6, 2017 at 10:24
1
Solved
i am new android and rxjava. i have been through many examples where we listen for events with rxbindings. such as this
RxView.clicks(b).subscribe(new Action1<Void>() {
@Override
public v...
Chantell asked 17/4, 2017 at 6:59
2
Solved
I have a simple use case where:
Activity1 create a fragment1
fragment1 after creation notify to activity that it is created and update its activity1 views.
activity1 after getting notification up...
Meunier asked 16/11, 2016 at 16:12
1
© 2022 - 2024 — McMap. All rights reserved.