2017-08-15 14 views
0

bitmapTransformを使用するために、2つのコンパイルを依存関係に追加しました。なぜ私はbitmapTransformを使用できないのか分かりません

以下に示すように、グライド変換とグライド変換が正常に追加されます。

compile 'com.android.support:appcompat-v7:25.2.0' 
compile 'com.android.support.constraint:constraint-layout:1.0.1' 
compile 'com.android.volley:volley:1.0.0' 
compile 'com.google.code.gson:gson:2.3.1' 
compile 'com.android.support:design:25.2.0' 
compile 'com.android.support:support-v4:25.2.0' 
compile 'com.android.support:recyclerview-v7:25.2.0' 
testCompile 'junit:junit:4.12' 
compile 'com.github.bumptech.glide:glide:4.0.0' 
compile 'jp.wasabeef:glide-transformations:2.0.2' 

しかし、私はGlide.with(この).LOAD(URL)でbitmapTransformメソッドを使用することはできませんか。?

ビットマップトランスフォームの方法は上記には示されていません。

私を助けてください。

答えて

0

私は問題を解決しました。

コンパイルバージョンをglide:4.0.0からglide:3.7.0に変更しました。

次に、bitmapTransformを使用できます。

関連する問題