I am using Universal Image Loader to "lazy load" my images from the web. Is it possible to use the fade in animation but fade in "from black" instead of "from white"? My app has a black background and I'd like it to smoothly fade it as opposed to "flash" in that the current effect looks like.
Here is the code that is working that fades from white
DisplayImageOptions options;
options = new DisplayImageOptions.Builder()
.showImageOnLoading(R.drawable.no_poster)
.showImageForEmptyUri(R.drawable.no_poster)
.showImageOnFail(R.drawable.no_poster)
.displayer(new FadeInBitmapDisplayer(500))
.cacheInMemory(true)
.cacheOnDisc(true)
.build();
ImageView myPosterView = (ImageView)findViewById(R.id.movieposterlarge);
imageLoader.displayImage(movie_poster, myPosterView,options);