Hi I'm receiving this error often:
java.lang.IllegalArgumentException: width and height must be > 0
I think it has to do with me trying to use popView on a GONE view so I added a check to see if it is Visible but I still get this error often, not entirely sure why. Doesn't happen all the time.
Here is my check:
if ((pulseView.getVisibility()== View.VISIBLE)) {
popField.popView(pulseView);
}
Hi I'm receiving this error often:
java.lang.IllegalArgumentException: width and height must be > 0I think it has to do with me trying to use popView on a GONE view so I added a check to see if it is Visible but I still get this error often, not entirely sure why. Doesn't happen all the time.
Here is my check: