android
Gif image is not showing its animation in android application
In my android application, I am using universal image loader to show images from url. During loading of image I want a gif image to be shown. But the gif image added is not showing any animation. Here is my code to display image. private static final DisplayImageOptions.Builder DEFAULT_DISPLAY_IMAGE_OPTIONS_BUIDLER = new DisplayImageOptions.Builder() .imageScaleType(ImageScaleType.IN_SAMPLE_POWER_OF_2) .displayer(new FadeInBitmapDisplayer(300, true, false, false)) .showImageForEmptyUri(R.drawable.default_image) .showImageOnLoading(R.drawable.loadingx) .showImageOnFail(sampleapp.sample.com.sampleapp.R.drawable.default_image).cacheOnDisk(true) .cacheInMemory(true).bitmapConfig(Config.ARGB_8888); what changes should I make to show an animated gif image during loading time image
Universal Image Loader doesnot Support Gif see this Try using other libraries like Glide which supports gif Glide.with(context) .load(imageUrl) .asGif() .placeholder(R.drawable.yourgif) .crossFade() .into(imageView);
Try to use glide for gif image loading... Glide .with( context ) .load( gifUrl ) .asGif() .error( R.drawable.full_cake ) .diskCacheStrategy(DiskCacheStrategy.SOURCE)` .into( imageViewGif ); to understand follow the link below - enter link description here
Related Links
How do I push my apk to a remote appium server?
What intent action sended when CalendarContract.CalendarAlerts item fired up?
easypermissions.requestPermissions null pointer exception [duplicate]
Update Google Play Services
How to scroll custom list view in Alert Dialog programmatically?
libVLC with Andorid Studio
immediately start MediaPlayer and update MediaPlayerControl
Gui.Label Not the same with android.(unity)
TextView auto create new line when end of the line and edittex not align with textview
Is there a way to implement webview with hardware and software layertype?
Passing data back to previous fragment from current fragment
Android View and Edit a Shared Prefs Values?I have Done with Saving
android want to close selection toolbar programitically [closed]
How to send my Logcat data to my server in android? [duplicate]
Hide soft Keyboard in Android after a custom dialog dismiss
Espresso Test - TextInputLayout not found