Simple question, perhaps frustratingly-complex-but-hopefully-simple answer?
What is the \"Best Practice\" for getting the actual height of an element that has its si
Just an extra amendment to the above answer, if you need to perform any operations to dimensions of multiple components in a view. The layout listener is called for each view as its layout completes. This is recursively true up to the root view component (i.e. child elements generate layout events, then the parent element generates its layout event). What this means is that you can simply hook onto the root view component's layout event to be notified when any view's layout changes.
ViewTreeObserver observer = this.findViewById(android.R.id.content).getViewTreeObserver();
Now you can expect that all your views will have width and height values set in onGlobalLayout because they've all performed their layout. This is obviously preferable to creating many listeners for each view that needs to expose its actual dimensions (unless of course you absolutely must have scope for which view generated the event, which is typically not necessary).