2016-09-26 8 views
0

どのパッケージにWidgetObservableが含まれていますか? Iは、とりわけどのパッケージにRxBinding WidgetObservableが含まれていますか?

build.gradle

dependencies { 
compile fileTree(include: ['*.jar'], dir: 'libs') 
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { 
    exclude group: 'com.android.support', module: 'support-annotations' 
}) 
compile 'com.android.support:appcompat-v7:24.2.0' 
testCompile 'junit:junit:4.12' 
compile 'com.jakewharton:butterknife:8.4.0' 
apt 'com.jakewharton:butterknife-compiler:8.4.0' 
compile 'io.reactivex:rxjava:1.2.0' 
compile 'io.reactivex:rxandroid:1.2.1' 
compile 'com.jakewharton.rxbinding:rxbinding:0.4.0' 
compile 'com.jakewharton.rxbinding:rxbinding-support-v4:0.4.0' 
compile 'com.jakewharton.rxbinding:rxbinding-design:0.4.0' 
compile 'com.jakewharton.rxbinding:rxbinding-appcompat-v7:0.4.0' 
compile 'com.jakewharton.rxbinding:rxbinding-leanback-v17:0.4.0'} 

答えて

0

WidgetObservableは即ちRxView取って代わられたコードにまだJakeWharton/RxBindingしかしWidgetObservableから入手可能なすべてのパッケージを追加しません。 "WidgetObservable and ViewObservable have been rolled into (and improved in) RxBinding"には次のように記載されています。

このライブラリ全体が置き換えられています。たとえば、 RxView.clicks(view)は、任意のビューのクリックイベントを提供します。

関連する問題