Steven-Meyer
Steven-Meyer
I came across this issue as well when trying to place a RemoteImageView in a vertical LinearLayout. The work around i came up with was instead of using a LinearLayout...
Yes this is definitely the issue. Another easier work around is after the image is loaded call the following ``` java remoteImageView.getProgressView().setVisibility(GONE); ``` This will allow you to put a...
Here is a quick example i threw together: have a layout file such as: ``` xml ``` and a java file: ``` java package com.example.ignition_fix; import com.github.ignition.core.widgets.RemoteImageView; import android.os.Bundle; import...