简体   繁体   English

如何在android和nativescript angular中禁用ios中的截图

[英]How to disable screenshot in android and ios in nativescript angular

I am making an app in which students can give their test online and i would like to restrict them from taking screenshots or record screen on both iOS and android. So far i have come across android solutions .我正在制作一个应用程序,学生可以在其中进行在线测试,我想限制他们在 iOS 和 android 上截屏或记录屏幕。到目前为止,我遇到了 android 解决方案 I want to figure out how to do it in both android and iOS.我想弄清楚如何在 android 和 iOS 中做到这一点。

Preventing screenshots on Android you can use below code.防止在Android上截屏,您可以使用以下代码。

if (app.android) { 
const window = app.android.startActivity.getWindow();
window.setFlags(android.view.WindowManager.LayoutParams.FLAG_SECURE,
 android.view.WindowManager.LayoutParams.FLAG_SECURE);
}

However, I want to know how to prevent screenshot on iOS , Could anyone please provide more details.但是,我想知道如何防止 iOS 上的屏幕截图,任何人都可以提供更多详细信息。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何使用 Flutter 在 android 和 ios 中仅禁用屏幕录制(而不是屏幕截图)? - How to disable only screen recording (not screenshot) in android and ios with Flutter? 在 Android 和 iOS 应用程序中禁用屏幕截图功能 - Disable screenshot function in Android and iOS app Android 和 iOS 标签行数 Angular/Nativescript - Android and iOS Label line count Angular/Nativescript 如何在 Android 上的 Unity 中禁用用于屏幕截图的游戏对象? - How to disable Gameobjects for Screenshot capturing in Unity on Android? 在 Android 应用程序中禁用屏幕截图 - Disable screenshot in Android application 我如何在iOS / Android中嵌入NativeScript Angular应用程序并导航到现有应用程序中的某些路由 - How can i embed an NativeScript Angular app in iOS / Android and navigate to certain routes from the existing app 如何在 iOS 中显示底部导航栏和在 Android (NativeScript Angular) 中显示顶部导航栏? - How to display Bottom Navigation bar in iOS and Top Navigation bar in Android (NativeScript Angular)? Android上带有Angular 2的Nativescript,如何关闭我的应用程序? - Nativescript with Angular 2 on Android, how to close my app? 带有Angular 2的Nativescript中的Android小部件 - Widget for Android in Nativescript with Angular 2 如何禁用Android应用程序的屏幕截图? - How do I disable screenshot from an android application?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM