ซ่อนแถบระบบสําหรับโหมดใหญ่พิเศษ

เนื้อหาบางอย่างจะดูได้ดีที่สุดในโหมดเต็มหน้าจอโดยไม่มีตัวบ่งชี้ใดๆ ในแถบสถานะหรือแถบนําทาง ตัวอย่างบางส่วน ได้แก่ วิดีโอ เกม แกลเลอรีรูปภาพ หนังสือ และสไลด์การนำเสนอ ซึ่งเรียกว่าโหมดสมจริง หน้านี้จะแสดงวิธีที่คุณสามารถดึงดูดผู้ใช้ให้มีส่วนร่วมกับเนื้อหา แบบเต็มหน้าจอมากขึ้น

รูปที่ 1 ตัวอย่างโหมดใหญ่พิเศษ

โหมดสมจริงช่วยให้ผู้ใช้หลีกเลี่ยงการออกจากเกมโดยไม่ตั้งใจ และมอบประสบการณ์การใช้งานที่สมจริงสำหรับการเพลิดเพลินกับรูปภาพ วิดีโอ และหนังสือ อย่างไรก็ตาม โปรดระมัดระวังความถี่ที่ผู้ใช้เข้าและออกจากแอปเพื่อดูการแจ้งเตือน การค้นหากะทันหัน หรือการดำเนินการอื่นๆ เนื่องจากโหมดสมจริงทำให้ผู้ใช้เข้าถึงการไปยังส่วนต่างๆ ของระบบได้ยากขึ้น จึงควรใช้โหมดสมจริงเฉพาะในกรณีที่ประโยชน์ต่อประสบการณ์ของผู้ใช้นั้นมากกว่าการใช้พื้นที่หน้าจอเพิ่มเติม

ใช้ WindowInsetsControllerCompat.hide() เพื่อซ่อนแถบระบบและ WindowInsetsControllerCompat.show() เพื่อนำแถบกลับมา

ข้อมูลโค้ดต่อไปนี้แสดงตัวอย่างการกำหนดค่าปุ่มเพื่อซ่อนและแสดงแถบระบบ

Kotlin

override fun onCreate(savedInstanceState: Bundle?) {
    ...

    val windowInsetsController =
        WindowCompat.getInsetsController(window, window.decorView)
    // Configure the behavior of the hidden system bars.
    windowInsetsController.systemBarsBehavior =
        WindowInsetsControllerCompat.BEHAVIOR_SHOW_TRANSIENT_BARS_BY_SWIPE

    // Add a listener to update the behavior of the toggle fullscreen button when
    // the system bars are hidden or revealed.
    ViewCompat.setOnApplyWindowInsetsListener(window.decorView) { view, windowInsets ->
        // You can hide the caption bar even when the other system bars are visible.
        // To account for this, explicitly check the visibility of navigationBars()
        // and statusBars() rather than checking the visibility of systemBars().
        if (windowInsets.isVisible(WindowInsetsCompat.Type.navigationBars())
            || windowInsets.isVisible(WindowInsetsCompat.Type.statusBars())) {
            binding.toggleFullscreenButton.setOnClickListener {
                // Hide both the status bar and the navigation bar.
                windowInsetsController.hide(WindowInsetsCompat.Type.systemBars())
            }
        } else {
            binding.toggleFullscreenButton.setOnClickListener {
                // Show both the status bar and the navigation bar.
                windowInsetsController.show(WindowInsetsCompat.Type.systemBars())
            }
        }
        ViewCompat.onApplyWindowInsets(view, windowInsets)
    }
}

Java

@Override
protected void onCreate(Bundle savedInstanceState) {
    ...

    WindowInsetsControllerCompat windowInsetsController =
            WindowCompat.getInsetsController(getWindow(), getWindow().getDecorView());
    // Configure the behavior of the hidden system bars.
    windowInsetsController.setSystemBarsBehavior(
            WindowInsetsControllerCompat.BEHAVIOR_SHOW_TRANSIENT_BARS_BY_SWIPE
    );

    // Add a listener to update the behavior of the toggle fullscreen button when
    // the system bars are hidden or revealed.
    ViewCompat.setOnApplyWindowInsetsListener(
        getWindow().getDecorView(),
        (view, windowInsets) -> {
        // You can hide the caption bar even when the other system bars are visible.
        // To account for this, explicitly check the visibility of navigationBars()
        // and statusBars() rather than checking the visibility of systemBars().
        if (windowInsets.isVisible(WindowInsetsCompat.Type.navigationBars())
                || windowInsets.isVisible(WindowInsetsCompat.Type.statusBars())) {
            binding.toggleFullscreenButton.setOnClickListener(v -> {
                // Hide both the status bar and the navigation bar.
                windowInsetsController.hide(WindowInsetsCompat.Type.systemBars());
            });
        } else {
            binding.toggleFullscreenButton.setOnClickListener(v -> {
                // Show both the status bar and the navigation bar.
                windowInsetsController.show(WindowInsetsCompat.Type.systemBars());
            });
        }
        return ViewCompat.onApplyWindowInsets(view, windowInsets);
    });
}

(ไม่บังคับ) ระบุประเภทของแถบระบบที่จะซ่อนและกำหนดลักษณะการทำงานเมื่อผู้ใช้โต้ตอบกับแถบระบบได้

ระบุแถบระบบที่จะซ่อน

หากต้องการระบุประเภทแถบระบบที่จะซ่อน ให้ส่งพารามิเตอร์รายการใดรายการหนึ่งต่อไปนี้ไปยัง WindowInsetsControllerCompat.hide()

ระบุลักษณะการทํางานของแถบระบบที่ซ่อนอยู่

ใช้ WindowInsetsControllerCompat.setSystemBarsBehavior() เพื่อระบุลักษณะการทำงานของแถบระบบที่ซ่อนอยู่เมื่อผู้ใช้โต้ตอบกับแถบระบบ

  • ใช้ WindowInsetsControllerCompat.BEHAVIOR_SHOW_BARS_BY_TOUCH เพื่อแสดงแถบระบบที่ซ่อนอยู่ในการโต้ตอบของผู้ใช้ใดก็ตามบนจอแสดงผลที่เกี่ยวข้อง

  • ใช้ WindowInsetsControllerCompat.BEHAVIOR_SHOW_BARS_BY_SWIPE เพื่อแสดงแถบระบบที่ซ่อนอยู่เมื่อใช้ท่าทางสัมผัสของระบบ เช่น การปัดจากขอบของหน้าจอที่แถบซ่อนอยู่

  • ใช้ WindowInsetsControllerCompat.BEHAVIOR_SHOW_TRANSIENT_BARS_BY_SWIPE เพื่อแสดงแถบระบบที่ซ่อนอยู่ชั่วคราวด้วยท่าทางสัมผัสของระบบ เช่น การปัดจากขอบของหน้าจอที่แถบซ่อนอยู่ แถบระบบชั่วคราวเหล่านี้จะวางซ้อนบนเนื้อหาของแอป อาจมีความโปร่งใสในระดับหนึ่ง และซ่อนโดยอัตโนมัติหลังจากหมดเวลาสั้นๆ