O Android 9 adiciona suporte para a implementação de diferentes tipos de cortes de tela em dispositivos. Os cortes da tela permitem criar experiências imersivas, de ponta a ponta, deixando espaço para sensores importantes na parte frontal dos dispositivos.
Figura 1. Corte da tela na parte superior central
O Android 9 oferece suporte aos seguintes tipos de recortes:
- Parte superior central: recorte no centro da borda superior
- Parte de cima descentralizada: o recorte pode estar no canto ou um pouco descentralizado
- Parte de baixo: recorte na parte de baixo
- Duplo: um recorte na parte de cima e outro na parte de baixo
Exemplos e origem
O código do gerenciador de janelas a seguir em
PhoneWindowManager.java
mostra como os frames de exibição são inseridos na área segura quando
LAYOUT_IN_DISPLAY_CUTOUT_MODE_ALWAYS
não está definido.
// Ensure that windows with a DEFAULT or NEVER display cutout mode are laid out in
// the cutout safe zone.
if (cutoutMode != LAYOUT_IN_DISPLAY_CUTOUT_MODE_ALWAYS) {
final Rect displayCutoutSafeExceptMaybeBars = mTmpDisplayCutoutSafeExceptMaybeBarsRect;
displayCutoutSafeExceptMaybeBars.set(displayFrames.mDisplayCutoutSafe);
if (layoutInScreen && layoutInsetDecor && !requestedFullscreen
&& cutoutMode == LAYOUT_IN_DISPLAY_CUTOUT_MODE_DEFAULT) {
// At the top we have the status bar, so apps that are
// LAYOUT_IN_SCREEN | LAYOUT_INSET_DECOR but not FULLSCREEN
// already expect that there's an inset there and we don't need to exclude
// the window from that area.
displayCutoutSafeExceptMaybeBars.top = Integer.MIN_VALUE;
}
if (layoutInScreen && layoutInsetDecor && !requestedHideNavigation
&& cutoutMode == LAYOUT_IN_DISPLAY_CUTOUT_MODE_DEFAULT) {
// Same for the navigation bar.
switch (mNavigationBarPosition) {
case NAV_BAR_BOTTOM:
displayCutoutSafeExceptMaybeBars.bottom = Integer.MAX_VALUE;
break;
case NAV_BAR_RIGHT:
displayCutoutSafeExceptMaybeBars.right = Integer.MAX_VALUE;
break;
case NAV_BAR_LEFT:
displayCutoutSafeExceptMaybeBars.left = Integer.MIN_VALUE;
break;
}
}
if (type == TYPE_INPUT_METHOD && mNavigationBarPosition == NAV_BAR_BOTTOM) {
// The IME can always extend under the bottom cutout if the navbar is there.
displayCutoutSafeExceptMaybeBars.bottom = Integer.MAX_VALUE;
}
// Windows that are attached to a parent and laid out in said parent already avoid
// the cutout according to that parent and don't need to be further constrained.
// Floating IN_SCREEN windows get what they ask for and lay out in the full screen.
// They will later be cropped or shifted using the displayFrame in WindowState,
// which prevents overlap with the DisplayCutout.
if (!attachedInParent && !floatingInScreenWindow) {
mTmpRect.set(pf);
pf.intersectUnchecked(displayCutoutSafeExceptMaybeBars);
parentFrameWasClippedByDisplayCutout |= !mTmpRect.equals(pf);
}
// Make sure that NO_LIMITS windows clipped to the display don't extend under the
// cutout.
df.intersectUnchecked(displayCutoutSafeExceptMaybeBars);
}
O SystemUI é renderizado na área de corte e precisa determinar onde pode ser exibido. PhoneStatusBarView.java é um exemplo de visualização que determina onde está o recorte da tela, seu tamanho e se a inserção da barra de navegação evita ou não a área do recorte.
Ao substituir onApplyWindowInsets()
, uma visualização pode determinar onde o recorte está
e atualizar o layout de acordo.
@Override
public WindowInsets onApplyWindowInsets(WindowInsets insets) {
if (updateOrientationAndCutout(mLastOrientation)) {
updateLayoutForCutout();
requestLayout();
}
return super.onApplyWindowInsets(insets);
}
Esses métodos descrevem como os recortes são processados na barra de status em todos os casos (ou seja, no centro de cima, no centro de cima sem centralização, na parte de baixo e nos recortes duplos em todas as rotações).
Requisitos
Para garantir que os apps não sejam afetados negativamente pelos recortes, é necessário fazer o seguinte:
- A barra de status se estende até pelo menos a altura do corte no modo retrato
- A área de corte precisa estar com efeito letterbox nos modos paisagem e tela cheia
O dispositivo pode ter até um corte em cada borda curta (superior e inferior).
Para mais informações, consulte o CDD.
Implementação
Para implementar recortes de tela no dispositivo, configure os seguintes valores para a IU do sistema.
Valor | Descrição |
---|---|
quick_qs_offset_height
|
Define a margem superior do painel de configurações rápidas. O relógio e a bateria são exibidos no espaço acima do painel. Em valores, defina como |
quick_qs_total_height
|
Altura total do painel de configurações rápidas (painel de configurações rápidas recolhido) quando a aba de notificações está aberta, incluindo o espaço acima do painel que contém o relógio.
Devido à forma como as configurações rápidas são definidas, a altura total do
painel de configurações rápidas (incluindo o deslocamento) precisa ser conhecida de forma estática.
Portanto, esse valor precisa ser ajustado pelo mesmo delta
|
status_bar_height_portrait
|
A altura padrão da barra de status do framework. Na maioria dos dispositivos, o padrão é 24dp. Quando houver um recorte, defina esse valor como a altura dele. Pode ser mais alto que o recorte se necessário. |
status_bar_height_landscape
|
A altura da barra de status no modo paisagem. Os recortes têm suporte apenas nas bordas curtas do dispositivo. Portanto, a altura da barra de status sempre será inalterada. Em um dispositivo sem recorte, isso é equivalente a
|
config_mainBuiltInDisplayCutout
|
O caminho que define a forma do recorte. Essa é uma string que pode ser analisada por
|
config_fillMainBuiltinDisplayCutout
|
Um valor booleano que determina se o caminho de corte (definido acima) será desenhado no software. Pode ser usado para emular um corte ou para preencher um recorte físico e conseguir suavização. Se verdadeiro, |
Consulte as definições padrão nestes arquivos dimens
:
Exemplo de sobreposição para um recorte emulado:
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- The bounding path of the cutout region of the main built-in display.
Must either be empty if there is no cutout region, or a string that is parsable by
{@link android.util.PathParser}.
The path is assumed to be specified in display coordinates with pixel units and in
the display's native orientation, with the origin of the coordinate system at the
center top of the display.
To facilitate writing device-independent emulation overlays, the marker `@dp` can be
appended after the path string to interpret coordinates in dp instead of px units.
Note that a physical cutout should be configured in pixels for the best results.
-->
<string translatable="false" name="config_mainBuiltInDisplayCutout">
M 0,0
L -48, 0
L -44.3940446283, 36.0595537175
C -43.5582133885, 44.4178661152 -39.6, 48.0 -31.2, 48.0
L 31.2, 48.0
C 39.6, 48.0 43.5582133885, 44.4178661152 44.3940446283, 36.0595537175
L 48, 0
Z
@dp
</string>
<!-- Whether the display cutout region of the main built-in display should be forced to
black in software (to avoid aliasing or emulate a cutout that is not physically existent).
-->
<bool name="config_fillMainBuiltInDisplayCutout">true</bool>
<!-- Height of the status bar -->
<dimen name="status_bar_height_portrait">48dp</dimen>
<dimen name="status_bar_height_landscape">28dp</dimen>
<!-- Height of area above QQS where battery/time go (equal to status bar height if > 48dp) -->
<dimen name="quick_qs_offset_height">48dp</dimen>
<!-- Total height of QQS (quick_qs_offset_height + 128) -->
<dimen name="quick_qs_total_height">176dp</dimen>
</resources>
Validação
Para validar a implementação de recortes de tela, execute os testes do CTS em tests/framework/base/windowmanager/src/android/server/wm.