I'm developing an Android Wear app and content on the very bottom of the screen is cropped because of the black bar.
This video says that we should get the height of the bar like this:
@Override
public WindowInsets onApplyWindowInsets(View v, WindowInsets insets) {
int barHeight = insets.getSystemWindowInsetBottom();
}
but in reality barHeight is always 0.
Right now I'm hacking it with
if (Build.MODEL.equals("Moto 360")) {
}
but that's not very future-proof. Any hints?
I use the window insets to determine the "chin" height in an Activity of a Wear app and in a watch face engine, so it does work. I've tested on a Moto 360. This is an extract from an Activity: