If we add the following log in MainActivity, we will see continuous "onLayoutChange" messages flooding the logcat.
mBinding.getRoot().addOnLayoutChangeListener(
(v, left, top, right, bottom, oldLeft, oldTop, oldRight, oldBottom) ->
Log.d("MainActivity", "onLayoutChange")
);