André Sousa

Results 8 comments of André Sousa

Hello. If it is possible with `BottomSheetDialogFragment` it should be possible with `SuperBottomSheetFragment`. Can you please post more info about the issue you are having?

Hello @hassan31 do you mean having a bottom sheet with some content and then changing its content when clicking on an item?

Hello Can you please the bottom sheet configuration you are using?

Hello I don't understand you question since a swipe is the default way of expanding a bottom sheet. Can you please provide more info on the issue you are having?

We have a similar problem in a multi module project. Basically in the non-android modules we are unable to run our custom lints. @tnorbye there a way to fix it?

@sjudd Any update on this?

Here are my conclusions so far on this matter. I created a sample app that shows a list of gif links: ``` "https://media3.giphy.com/media/l4pT0Y5Zr6nsdFmZq/giphy.gif" "https://user-images.githubusercontent.com/512439/31472012-f0ca007a-aea0-11e7-882e-2b4ef259a954.gif" "https://media.giphy.com/media/3o6Zt7YExBfE89p6Yo/giphy.gif" "https://media.giphy.com/media/10A06pOVcpo6hW/giphy.gif" "https://media.giphy.com/media/10D8j2EpNCXDA4/giphy.gif" "https://media3.giphy.com/media/l4pT0Y5Zr6nsdFmZq/giphy.gif" "https://media0.giphy.com/media/3o7WIFB3rd67FVuyOs/giphy.gif" "https://media1.giphy.com/media/Sb7bVRgv5NJcjbLJce/giphy.gif"...

@lucasgriotto very simple: **Glide** ``` Glide.with(holder.binding.imageView) .asGif() .load(image[position]) .into(holder.binding.imageView) .clearOnDetach() ``` **Fresco** ``` val hierarchy = holder.binding.imageView.hierarchy hierarchy.fadeDuration = 0 holder.binding.imageView.hierarchy = hierarchy holder.binding.imageView.controller = Fresco.newDraweeControllerBuilder() .setImageRequest(ImageRequest.fromUri(image[position])) .setAutoPlayAnimations(true) .build() ```