Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为受控环境开发一个 Android 应用程序,在该环境中,不应允许用户退出 VrVideoView 的全屏纸板模式。
通过进入纸板模式,SDK 似乎呈现了自己的活动,所以我不能简单地覆盖 onBackPressed。
有没有办法防止这种情况?
通过在内脏中四处寻找,您可以将手放在对话框上(是的,它是一个对话框)并禁用后退按钮:
vrView = (VrVideoView) findViewById(R.id.videoView); vrView.fullScreenDialog.setCancelable(false);