Can I remove the carrier icon at lock screen with adb shell commands? - Samsung Galaxy S10 Questions & Answers

Can I remove the carrier icon / name at lock screen status bar with adb shell commands without root?
E.g. "adb shell settings put secure icon_blacklist ...(name of the carrier)".
I don't want to use any 3rd party tools for it.

Related

Swipe Down Navbar

Hi huys,
First of all it's my first post here. I have some questions:
I wanted to make the click to hide and swipe up to show system that huawei puts into some devices work on my Huawei P8 Lite 2017 (Pra-LX1) but I can only make the little arrow working using the Settings Database Editor and adding hide_virtual_key and changing the value to 1 therefore making it apear. Unfortunately, once I click the arrow I need to delete this setting because I can't make the navbar swipe up again.
Notice that I don't have root but I am considering rooting my device it that makes this work. I really wanted to make it work
Can anyone help me? I can use ADB and all of those things. i'm kinda of noob but I can manage myself. I just didn't want to change the stock rom because of the warranty...
My build is PRA-LX1C33B137
P.S: I'll leave a image of what I want to enable so you guys can see: g.oo.gl/cmVYHJ
Thank you all for your attention
https://play.google.com/store/apps/details?id=com.teammt.gmanrainy.emuitweaker
You can try this app that I found. I don't know if it works with your device because I'm using the old P8 lite.
OPTION 1 - Do not need root on the device (ADB command line)
To enable "NavBar Arrow":
Code:
adb shell settings put system hide_virtual_key 1
To disable "NavBar Arrow":
Code:
adb shell settings put system hide_virtual_key 0
OPTION 2 - Need root on the device (Edit build.prop)
Enable option on settings to show or hide "NavBar Arrow":
Code:
ro.config.showNavigationBar=true
brunolee said:
OPTION 1 - Do not need root on the device (ADB command line)
To enable "NavBar Arrow":
Code:
adb shell settings put system hide_virtual_key 1
To disable "NavBar Arrow":
Code:
adb shell settings put system hide_virtual_key 0
OPTION 2 - Need root on the device (Edit build.prop)
Enable option on settings to show or hide "NavBar Arrow":
Code:
ro.config.showNavigationBar=true
Click to expand...
Click to collapse
Thanks for ur help, the problem is after I click the arrow I can't swipe up the navbar

Navigation keys reorder

Any idea how to reorder navigation keys?
Im used to back key on the right and recent apps on the left side.
Kryptonyx said:
Any idea how to reorder navigation keys?
Im used to back key on the right and recent apps on the left side.
Click to expand...
Click to collapse
try using Custom Navigation Bar app
https://forum.xda-developers.com/android/apps-games/app-custom-navigation-bar-customize-t3590967
You can change it using ADB:
Code:
adb shell
settings put secure sysui_nav_bar "space,recent;home;back,space"
To get current order in case of future restore to stock you can use this command:
Code:
adb shell
settings get secure sysui_nav_bar
AlexX333BY said:
You can change it using ADB:
Code:
adb shell
settings put secure sysui_nav_bar "space,recent;home;back,space"
To get current order in case of future restore to stock you can use this command:
Code:
adb shell
settings get secure sysui_nav_bar
Click to expand...
Click to collapse
This really helped.
Thanks a lot!
Bro i'am trying to back to the original order, but i can't .. even i use adb shell .. but still didn't work (sorry for bad English)
AlexX333BY said:
You can change it using ADB:
Code:
adb shell
settings put secure sysui_nav_bar "space,recent;home;back,space"
To get current order in case of future restore to stock you can use this command:
Code:
adb shell
settings get secure sysui_nav_bar
Click to expand...
Click to collapse
Thank you, It works !!

[Guide] Change Navigation Buttons order (Not Tested)

Hello , for changing the navigation buttons order
try this trick- not tested it myself may be some one can try and provide feedback
This is a converted or translated info so there might be some error could be occurs during the process so use it with your own risk
To change the order of the buttons found the following hack:
adb shell
settings put secure sysui_nav_bar "space, recent; home; back, space"
this is another trick that will hide notification , not tested ,
adb shell
settings put global heads_up_notifications_enabled 0
Who has the root and terminal emulator, the command format is:
su
settings put global heads_up_notifications_enabled 0
hi, tried this you need to remove the space inside the quote (not the word space)
settings put secure sysui_nav_bar "space,recent;home;back,space"

Demo

hi, i removed demo app but notify in statusbar still alive,
i can kill it via usb
adb shell am force-stop com.android.systemui/.DemoMode
but can't disable it from phone terminal.
Any way to kill com.android.systemui/.DemoMode from phone terminal without root? So i create app for kill it at every reboot

Android 10 gestures on note 9 with Nova launcher

I wanted all new gestures on my phone.
I've founded tutorial with information that it is possible with adb with command:
adb shell cmd overlay enable com.android.internal.systemui.navbar.gestural
It didn't work and phone shortcuts started to behave weird.
Can you tell me if commend
adb shell cmd overlay disable com.android.internal.systemui.navbar.gestural
will be safe or it can disable/change something important in my note 9?

Categories

Resources