Android 9 menambahkan dukungan untuk menerapkan berbagai jenis potongan layar di perangkat. Potongan layar memungkinkan Anda membuat pengalaman yang imersif dan dari tepi ke tepi sambil tetap memberikan ruang untuk hal-hal penting sensor di bagian depan perangkat.
Gambar 1. Potongan layar tengah atas
Android 9 mendukung jenis potongan berikut:
- Tengah atas: Potong di tengah tepi atas
- Atas tidak berada di tengah: Potongan mungkin berada di sudut atau sedikit tidak berada di tengah
- Bawah: Potong di bagian bawah
- Ganda: Satu potongan di atas dan satu di bagian bawah
Contoh dan sumber
Kode pengelola jendela berikut di
PhoneWindowManager.java
menunjukkan bagaimana {i>display frame<i}
dimasukkan ke area aman ketika
LAYOUT_IN_DISPLAY_CUTOUT_MODE_ALWAYS
belum disetel.
// 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);
}
SystemUI merender di area potongan, dan perlu menentukan tempat menggambarnya. PhoneStatusBarView.java memberikan contoh tampilan yang menentukan lokasi potongan layar, serta besar itu, dan apakah inset dari bilah navigasi menghindari area potongan atau tidak.
Dengan mengganti onApplyWindowInsets()
, tampilan dapat menentukan lokasi potongan
dan perbarui tata letaknya.
@Override
public WindowInsets onApplyWindowInsets(WindowInsets insets) {
if (updateOrientationAndCutout(mLastOrientation)) {
updateLayoutForCutout();
requestLayout();
}
return super.onApplyWindowInsets(insets);
}
Metode ini menguraikan cara penanganan potongan di status bar dalam semua kasus (yaitu tengah atas, tidak tengah atas, bawah, dan potongan ganda di semua rotasi).
Persyaratan
Untuk memastikan aplikasi tidak terkena dampak negatif oleh potongan, Anda harus memastikan bahwa:
- Status bar memanjang setidaknya hingga tinggi potongan dalam mode potret
- Area potongan harus diberi tampilan lebar dalam mode layar penuh dan lanskap
Perangkat Anda dapat memiliki maksimal satu potongan di setiap tepi pendek (atas dan bawah).
Untuk mengetahui informasi selengkapnya, lihat CDD.
Implementasi
Untuk menerapkan potongan layar di perangkat, Anda harus mengonfigurasi hal berikut untuk UI Sistem.
Nilai | Deskripsi |
---|---|
quick_qs_offset_height
|
Menentukan margin atas untuk panel setelan cepat. Jam dan baterai ditampilkan di ruang di atas panel. Di values-land, tetapkan ke |
quick_qs_total_height
|
Tinggi total panel setelan cepat cepat (setelan cepat diciutkan panel) saat menu notifikasi diluaskan, termasuk ruang di atas panel yang berisi jam.
Karena cara pengaturan cepat, tinggi total
panel pengaturan cepat (termasuk offset) harus diketahui secara statis,
sehingga nilai ini harus disesuaikan dengan delta yang sama
|
status_bar_height_portrait
|
Tinggi default status bar dari perspektif framework. Pada sebagian besar perangkat, ukuran defaultnya adalah 24 dp. Jika ada potongan, setel tinggi ke tinggi potongan. Bisa lebih tinggi dari potongan jika diinginkan. |
status_bar_height_landscape
|
Tinggi status bar dalam mode lanskap. Cutout hanya didukung di tepi pendek perangkat, sehingga status ini akan selalu tidak diubah tinggi batang. Di perangkat tanpa potongan, ini sama dengan
|
config_mainBuiltInDisplayCutout
|
Jalur yang menentukan bentuk potongan. Ini adalah string yang dapat diuraikan oleh
|
config_fillMainBuiltinDisplayCutout
|
Nilai boolean yang menentukan apakah akan menggambar jalur potongan (ditentukan di atas) dalam software. Dapat digunakan untuk mengemulasi potongan, atau mengisi potongan fisik untuk mencapai anti-aliasing. Jika benar, |
Lihat file dimens
ini untuk mengetahui definisi default:
Contoh overlay untuk potongan yang diemulasi:
<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>
Validasi
Untuk memvalidasi penerapan potongan layar, jalankan uji CTS di tests/framework/base/windowmanager/src/android/server/wm.