Source code
Revision control
Copy as Markdown
Other Tools
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
package org.mozilla.fenix
import android.os.Bundle
import androidx.annotation.LayoutRes
import androidx.fragment.app.Fragment
import org.mozilla.fenix.ext.removeSecure
import org.mozilla.fenix.ext.secure
/**
* A [Fragment] implementation that can be used to secure screens displaying sensitive information by not allowing
* taking screenshots of their content.
*
* Fragments displaying such screens should extend [SecureFragment] instead of [Fragment] class.
*/
open class SecureFragment(@LayoutRes contentLayoutId: Int) : Fragment(contentLayoutId) {
constructor() : this(0) {
Fragment()
}
override fun onCreate(savedInstanceState: Bundle?) {
this.secure()
super.onCreate(savedInstanceState)
}
override fun onDestroy() {
this.removeSecure()
super.onDestroy()
}
}