在开发 Android Wear 表盘时,如何检测屏幕是否是圆形的并且有下巴(又名爆胎带),例如 Moto 360?我试过onSurfaceChanged
了,但那里的宽度和高度是相同的。
我在有下巴的模拟器上试过这个,但仍然无法检测到下巴,是模拟器问题还是我的代码有问题?:
@Override
void onApplyWindowInsets(WindowInsets insets) {
super.onApplyWindowInsets(insets);
// check if MOTO360 or other Chin layouts
Log.d(TAG,String.format("isRound : %s, BottomInset :%d",insets.isRound()?"YES":"NO",insets.getStableInsetBottom()));
// LOG OUTPUT : isRound : YES, BottomInset :0
if (insets.isRound() && insets.getStableInsetBottom() > 0)
ClockPaintingRoutines.flat_display_mode=true;
}