Android 9 aggiunge il supporto per l'implementazione di diverse tipi di ritagli del display sui dispositivi. I ritagli del display ti consentono di creare esperienze immersive e edge-to-edge, lasciando comunque spazio per sulla parte anteriore dei dispositivi.
Figura 1. Ritaglio display in alto al centro
Android 9 supporta i seguenti tipi di ritagli:
- In alto al centro: ritaglio al centro del bordo superiore
- In alto non centrato: il ritaglio potrebbe essere nell'angolo o leggermente decentrato
- In basso: ritaglio nella parte inferiore
- Doppia: un ritaglio nella parte superiore e uno nella parte inferiore
Esempi e fonte
Il seguente codice di gestione finestre su
PhoneWindowManager.java
mostra come i frame del display vengono inseriti nell'area sicura
LAYOUT_IN_DISPLAY_CUTOUT_MODE_ALWAYS
non impostato.
// 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);
}
L'UI di sistema viene visualizzata nell'area di ritaglio e deve determinare dove può essere tracciata. PhoneStatusBarView.java fornisce un esempio di vista che determina dove si trova il ritaglio display, e se il riquadro della barra di navigazione evita l'area di ritaglio.
Se esegui l'override di onApplyWindowInsets()
, una vista può determinare la posizione del ritaglio
e aggiornarne il layout di conseguenza.
@Override
public WindowInsets onApplyWindowInsets(WindowInsets insets) {
if (updateOrientationAndCutout(mLastOrientation)) {
updateLayoutForCutout();
requestLayout();
}
return super.onApplyWindowInsets(insets);
}
Questi metodi descrivono la gestione dei ritagli nella barra di stato in tutti i casi. Ad esempio, in alto al centro, in alto non centrato, in basso e in doppi ritagli in tutte le rotazioni.
Requisiti
Per assicurarti che le app non siano influenzate negativamente dai ritagli, devi verificare che:
- La barra di stato si estende almeno fino all'altezza del ritaglio in modalità Ritratto
- L'area di ritaglio deve essere adattata in modalità a schermo intero e in orizzontale
Il dispositivo può avere fino a un ritaglio su ogni lato corto (superiore e inferiore).
Per ulteriori informazioni, consulta il CDD.
Implementazione
Per implementare ritagli del display sul dispositivo, devi configurare quanto segue per l'UI di sistema.
Valore | Descrizione |
---|---|
quick_qs_offset_height
|
Definisce il margine superiore per il riquadro delle impostazioni rapide. Orologio e batteria nello spazio sopra il riquadro. In values-land, impostato su |
quick_qs_total_height
|
Altezza totale del riquadro delle impostazioni rapide (impostazioni rapide compresse) ) quando l'area notifiche è espansa, incluso lo spazio sopra nel riquadro contenente l'orologio.
A causa della disposizione delle impostazioni rapide, l'altezza totale
il riquadro delle impostazioni rapide rapide (incluso l'offset) deve essere noto in modo statico,
quindi questo valore deve essere regolato con lo stesso delta
|
status_bar_height_portrait
|
L'altezza predefinita della barra di stato dal punto di vista del framework. Nella maggior parte dei dispositivi, l'impostazione predefinita è 24 dp. Imposta questo valore quando è presente un ritaglio in base all'altezza del ritaglio. Può essere facoltativamente più alto del ritaglio se lo desideri. |
status_bar_height_landscape
|
L'altezza della barra di stato in orizzontale. I ritagli sono supportati solo su i bordi corti del dispositivo, pertanto questo stato rimarrà sempre inalterato l'altezza della barra. In un dispositivo senza ritaglio, equivale a
|
config_mainBuiltInDisplayCutout
|
Il percorso che definisce la forma del ritaglio. Questa è una stringa analizzabile
Puoi specificare |
config_fillMainBuiltinDisplayCutout
|
Un valore booleano che determina se tracciare o meno il percorso di ritaglio (definito sopra) nel software. Può essere utilizzato per emulare un ritaglio o per compilare un ritaglio fisico per ottenere l'anti-aliasing. Se true, il campo |
Consulta questi file dimens
per le definizioni predefinite:
Overlay di esempio per un ritaglio emulato:
<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>
Convalida
Per convalidare l'implementazione di ritagli display, esegui i test CTS all'indirizzo tests/framework/base/windowmanager/src/android/server/wm.