fix: Prevent exam access in split-screen mode#1023
Conversation
Gowreesh-A-M
commented
Dec 9, 2025
- Detect when the app enters multi-window mode and treat it as a violation.
- Preserve violation count across configuration changes to ensure consistent behavior.
- Display a non-dismissible warning dialog whenever split-screen usage is detected.
Summary of ChangesHello @Gowreesh-A-M, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request introduces robust measures to prevent exam access in split-screen mode, enhancing the integrity of the examination process. It implements detection for multi-window usage, maintains a persistent violation count across device configuration changes, and presents a mandatory warning dialog to users, ensuring that exams cannot be conducted while the application is in a split-screen state. Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request aims to prevent exam access in split-screen mode by treating it as a violation. The approach is generally sound, involving detection of multi-window mode, preserving violation counts, and showing a non-dismissible dialog. However, I've identified a critical issue where the multi-window mode change event is not propagated from the TestActivity to the TestFragment, rendering the feature non-functional. Additionally, there's a high-severity bug in the onStop logic within TestFragment that fails to record a violation when the app is backgrounded from an existing split-screen session. I have provided code suggestions to address both of these issues.
2eb4411 to
7551a55
Compare