Denny
Denny
You are right. I implemented a workaround for my app by using this source code: http://stackoverflow.com/questions/26744842/how-to-use-the-new-sd-card-access-api-presented-for-lollipop But I don't want to do this for this library. Can you explain us...
Or implement #16
Because Glide fills the ImageView also with a delay after the cache is loaded, so I just wanted to make sure the image is completely loaded before using your lib....
I have the same issue then... ``` RenderScriptProvider renderScriptProvider = new RenderScriptProvider(mActivity); photoView.setClipToOutline(true); ShadowView shadowView = viewDetailsContent.findViewById(R.id.spaceShadow); shadowView.blurScript = new RenderScriptBlur(renderScriptProvider); // Target b.into(photoView); ``` ``` kotlin.UninitializedPropertyAccessException: lateinit property bitmap...
I've already tried that... Doesn't help. I'm asking myself it it isn't because of the ViewPager, because he instantiaties the Views with a delay... maybe... ``` kotlin.UninitializedPropertyAccessException: lateinit property bitmap...
Right in the `instantiateItem` method of my Pager Adapter: PagerAdapter: ``` @Override public Object instantiateItem(@NonNull ViewGroup container, final int position) { // Inflate View viewDetailsContent = LayoutInflater.from(container.getContext()).inflate( R.layout.details_content_normal , null...
Thanks for your help! I will try that out. (But not today)
I see. I think it has a huge potential, would be cool if you could work on it :)
Here is a patch with the modifications I've done to make it work. Note that `ImageInfoExtractor.TYPE_ANIMATED_WEBP` isn't available anymore. ``` Index: app/src/main/java/com/github/piasy/biv/loader/ImageLoader.java IDEA additional info: Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP UTF-8 =================================================================== ---...