Update for API 23:
To determine if the screen is round you can use
context.getResources().getConfiguration().isScreenRound()
Android reference
Or you can use the round
and notround
resource qualifiers and let the system apply the proper resources but beware that this will not work on devices running API 22 or lower
Source
Thanks to people who pointed out this change.
Old asnwer
From google I/O talk (https://www.youtube.com/watch?v=naf_WbtFAlY#t=284):
From SDK 20 android.view.View
class has
public void setOnApplyWindowInsetsListener(OnApplyWindowInsetsListener listener)
and OnApplyWindowInsetsListener
has a callback method onApplyWindowsInset
public WindowInsets onApplyWindowInsets(View view, WindowInsets windowInsets){
if (windowInsets.isRound()){
//Do stuff
}
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…