Observable.combineLatest type inference in kotlin

白昼怎懂夜的黑 提交于 2019-11-29 11:03:59

问题


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 edittext fields are not empty.

LoginActivity.java

Observable<Boolean> isFormEnabled =
    Observable.combineLatest(mUserNameObservable, mPasswordObservable,
        (userName, password) -> userName.length() > 0 && password.length() > 0)
        .distinctUntilChanged();

I'm unable to translate the above code from Java to Kotlin:

LoginActivity.kt

class LoginActivity : AppCompatActivity() {

  val disposable = CompositeDisposable()

  private var userNameObservable: Observable<CharSequence>? = null
  private var passwordObservable: Observable<CharSequence>? = null

  override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)
    setContentView(R.layout.activity_login)
    initialize()
  }

  fun initialize() {
    userNameObservable = RxTextView.textChanges(username).skip(1)
        .debounce(500, TimeUnit.MILLISECONDS)
    passwordObservable = RxTextView.textChanges(password).skip(1)
        .debounce(500, TimeUnit.MILLISECONDS) 
  }

  private fun setSignInButtonEnableListener() {
    val isSignInEnabled: Observable<Boolean> = Observable.combineLatest(userNameObservable,
        passwordObservable,
        { u: CharSequence, p: CharSequence -> u.isNotEmpty() && p.isNotEmpty() })
  }
}

I assumed it's something related to type inference of the third argument in combinelatest, but I don't get the issue properly by reading the error message:


回答1:


Your issue is that the compiler can't figure out which override of combineLatest to call, because multiple ones have functional interfaces as their third parameter. You can make the conversion explicit with a SAM constructor like this:

val isSignInEnabled: Observable<Boolean> = Observable.combineLatest(
        userNameObservable,
        passwordObservable,
        BiFunction { u, p -> u.isNotEmpty() && p.isNotEmpty() })

Ps. Thanks for asking this question, it helped me figure out that I was initially wrong about this one that turns out to be the same problem, which I've now updated with this solution as well. https://stackoverflow.com/a/42636503/4465208




回答2:


You can use RxKotlin which gives you helper methods for SAM ambiguity issue.

val isSignInEnabled: Observable<Boolean> = Observables.combineLatest(
    userNameObservable,
    passwordObservable)
    { u, p -> u.isNotEmpty() && p.isNotEmpty() })

As you can see, in RxKotlin use Observables instead of Observable



来源:https://stackoverflow.com/questions/42725749/observable-combinelatest-type-inference-in-kotlin

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!