For example, this is mButton
:
<Button
android:id="@+id/mbtn"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="mButton" />
This is how I tried to get the height:
int height = mButton.getLayoutParams.height;
But when I logged it, it says the height is -2. I think this might be the int value of "wrap_content". So how can I get the actual height? Thx!