LoginSignup
4
3

More than 3 years have passed since last update.

特定の画面でスクリーンショットを禁止する方法

Last updated at Posted at 2019-06-11

たった1行だけの処理なのですが、忘れてしまうことも多いので備忘録を兼ねて。

class MainActivity : AppCompatActivity() {

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_video)

        // スクリーンショットを禁止したい画面のActivityにこの1行を追加する
        window.addFlags(WindowManager.LayoutParams.FLAG_SECURE)
    }

}
4
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
3