mirror of
https://github.com/fork-maintainers/iceraven-browser
synced 2024-11-03 23:15:31 +00:00
Bug 1816059 - Show the notification for entering fullscreen as a Toast
This commit is contained in:
parent
0fe446ea6d
commit
d520847ef6
@ -17,6 +17,7 @@ import android.view.LayoutInflater
|
||||
import android.view.View
|
||||
import android.view.ViewGroup
|
||||
import android.view.accessibility.AccessibilityManager
|
||||
import android.widget.Toast
|
||||
import androidx.activity.result.ActivityResultLauncher
|
||||
import androidx.annotation.CallSuper
|
||||
import androidx.annotation.VisibleForTesting
|
||||
@ -1442,12 +1443,8 @@ abstract class BaseBrowserFragment :
|
||||
if (inFullScreen) {
|
||||
// Close find in page bar if opened
|
||||
findInPageIntegration.onBackPressed()
|
||||
FenixSnackbar.make(
|
||||
view = binding.dynamicSnackbarContainer,
|
||||
duration = Snackbar.LENGTH_SHORT,
|
||||
isDisplayedWithBrowserToolbar = false,
|
||||
)
|
||||
.setText(getString(R.string.full_screen_notification))
|
||||
Toast
|
||||
.makeText(requireContext(), R.string.full_screen_notification, Toast.LENGTH_SHORT)
|
||||
.show()
|
||||
activity?.enterToImmersiveMode()
|
||||
(view as? SwipeGestureLayout)?.isSwipeEnabled = false
|
||||
|
Loading…
Reference in New Issue
Block a user