Michal Vician
Michal Vician
I had similar issue. My `ScrollView` uses `android:fillViewport` attribute to fill the whole viewport even if `ScrollView`'s content is too small. Unfortunatelly the overscroll didn't work in this scenario so...
Hi, we created an [Android Dialogflow v2 client library](https://github.com/Educards/android-dialogflow), which uses the official [Google Cloud Java lib](https://cloud.google.com/dialogflow/es/docs/reference/libraries/java) to communicate with Dialogflow.
Many issues are caused by caching in onMeasure(). This one seems to be the same problem. Have a look at https://github.com/maurycyw/StaggeredGridView/issues/89
Try to comment "caching if statements" in onMeasure(). See: https://github.com/maurycyw/StaggeredGridView/issues/89
Solution for this problem: https://github.com/maurycyw/StaggeredGridView/issues/89 The problem is, that there are some variables cached in onMeasure() method. You need to comment "if" statements so that onMeasure() always recalculates necessary atributes.