KeyMapper icon indicating copy to clipboard operation
KeyMapper copied to clipboard

Full screen mode action

Open Droidphilev opened this issue 3 years ago • 6 comments
trafficstars

Developer TODO (don't remove)

  • [ ] create new branch. put issue number at start of name
  • [ ] update documentation
  • [ ] merge and delete branch (don't squash because want commit history to see why I made changes)

Hi all,

I use a device with a tiny little screen. Navigation bar is not shown (no touch screen) only the status bar is shown. I was looking for an action "toggle full screen mode" so that the status bar is also gone. Is this not implemented? Maybe it is called different in the app?

Kind regards, Phil

Droidphilev avatar Aug 13 '22 11:08 Droidphilev

Do you have an example of any apps that can force other apps into full screen mode?

sds100 avatar Aug 15 '22 23:08 sds100

Hi again,

Sure, Button Mapper has "toggle full screen".

EDIT: To be more precise: this toggle is system wide. Not per app. It uses ADB write secure settings by the way.

Droidphilev avatar Aug 16 '22 04:08 Droidphilev

Hi again,

Sure, Button Mapper has "toggle full screen".

EDIT: To be more precise: this toggle is system wide. Not per app. It uses ADB write secure settings by the way.

Thanks! Are you fine with this being a system-wide write secure settings thing?

sds100 avatar Aug 16 '22 17:08 sds100

Sure! The screen stays tiny, no matter which app is in foreground so system wide is more than good enough:-)

BTW: i have to use ADB anyway to use KeyMapper as there is no interface for "accessibility" in settings in this device.

Thank you in advance!!!

Droidphilev avatar Aug 16 '22 17:08 Droidphilev

Do you have an example of any apps that can force other apps into full screen mode?

To force full screen, you can use global settings. The name is policy_control and the value is immersive.full=*

There is also immersive.status=* for just the status bar and immersive.navigation=* for the navbar

immersive_none sets it back to normal

GL513 avatar Aug 18 '22 18:08 GL513

Do you have an example of any apps that can force other apps into full screen mode?

To force full screen, you can use global settings. The name is policy_control and the value is immersive.full=*

There is also immersive.status=* for just the status bar and immersive.navigation=* for the navbar

immersive_none sets it back to normal

Thank you!

sds100 avatar Aug 20 '22 13:08 sds100