Hi,
Is there a way to clear all notifications on ICS (having the same effect as pulling down the notifications bar + clicking the "x" button) using a shell command or launching an intent?
I have tried the command
service call notification 1
but it returns the Result: Parcel(fffffffc ffffffff '........')
thanks!
Related
Is it possible to unhide the messages received on the lockscreen instead of showing "There are new messages"?
I cannot see who has sent me a message without entering the app.
Thanks!
Yes it is. If You open WhatsApp, and on the home screen press three dots at the right top corner > Settings > Notifications > and there You can change Popup Notifications
about whatsapp notifications, is there a way to hide the content of the notification on the status bar?
I recently installed Fluid Navigation Gestures. I loved it till I noticed that the default navigation bar is displayed in certain instances i.e. while in system settings, using keyboard etc. I tried to disable it from the app itself but nothing changes. I also tried to disable the Hide Navigation Bar option. No luck. I noticed that once I disabled the default navigation doesn't return and the gestures stop working. I haven't tried uninstalling the app not until I have re-enabled the default navigation bar (there's also a warning in the app that's along these lines).
If there's a way I can manually change the setting that hides the navigation bar. I could bring it back and then completely uninstall the app. I read somewhere that there's a magisk module that hides the navigation bar. Sadly, I cannot find that from the magisk repo.
I have an H930DS running 20p Oreo and Nova Launcher. TWRP and root. If this helps.
Ahugari said:
I recently installed Fluid Navigation Gestures. I loved it till I noticed that the default navigation bar is displayed in certain instances i.e. while in system settings, using keyboard etc. I tried to disable it from the app itself but nothing changes. I also tried to disable the Hide Navigation Bar option. No luck. I noticed that once I disabled the default navigation doesn't return and the gestures stop working. I haven't tried uninstalling the app not until I have re-enabled the default navigation bar (there's also a warning in the app that's along these lines).
If there's a way I can manually change the setting that hides the navigation bar. I could bring it back and then completely uninstall the app. I read somewhere that there's a magisk module that hides the navigation bar. Sadly, I cannot find that from the magisk repo.
I have an H930DS running 20p Oreo and Nova Launcher. TWRP and root. If this helps.
Click to expand...
Click to collapse
I found a way to disable it safely. I used the Quick tiles shortcut for FNG to pause/disable it. In the app itself I disabled the hide navigation bar option then uninstalled it after clear its data and cache. You should also revoke the permissions (draw over apps). That's it!
Still not able to disable
Still not able to disable
crying:
harishan said:
Still not able to disable
crying:
Click to expand...
Click to collapse
try to to disable fng via accessibility setting. did you grant permission via adb or root?
You can restore the navigation keys by running this adb command:
Windows:
adb shell wm overscan 0,0,0,0
macOS:
./adb shell wm overscan 0,0,0,0
Thereafter uninstall the app normally.
Your also advised to disable the app before you Force stop, Clear app data or Uninstall the app.
You want to hide the nav bar in all and all? Turn off all pauses under black list (in ng fluid app) and you would have no nav bar displayed anywhere.
Don't forget to modify triggers to how you want first
I love this app, this is a great gesture app I've ever used. But one problem I found I not able to restore auto-hidden nav bar in my Asus Max Pro M1 even I disable "Hide Navigation bar" option from App. I also tried it by disable app/clear app data/uninstalling app. But still I'm not able to get my auto-hidden nav bar again. Always it automatically auto hide, I have to swip up from bottom to bring it and after few seconds it automatically hide from screen.
I also tried following command.
Windows:
adb shell wm overscan 0,0,0,0.
Please help
How to disable fluid navigation gesture
You have to install ADB setup on pc or laptop and then open ADB.
On phone download navigation gesture provided by xda and follow all grant permissions app requires.
Then you have to open developer options of your phone.
Enable usb debugging.
Connect your phone to pc.
And write this command.
Adb devices( your phone will be shown on command after you type this command)
Then write one more command.
(adb shell pm grant com.xda.nobar android.permission.WRITE_SECURE_SETTINGS)
After all this process open navigation gesture and disable the option showing " hide navigation ".
All done and free yourself.
Hello, So this is an awkward question to get across. I have a moto g6 play that is receiving persistent, yet random notification vibrations . It is running stock android 9. occasionally I see a downloading symbol flash up on the screen when this random notification happens but it goes to fast to respond to. I would like to make these notifications shut up for good if possible.
Things I have done: Following some advice on stack overflow I used an adb shell command
Code:
dumpsys vibrator | awk '/opPkg:/{print $NF}'
to display vibration events and list the app that is issuing the command. This shows me that the app "android" is making the requests. I used the "applications info" from the playstore and it shows the "android" app as android system.
So the "android system" app is consistently but randomly pushing notifications that do not show up but still makes the phone vibrate. The app does not show up in the apps list.
Any advice on how to shut it up, or if it is related to the system downloading something several times a day would be great.
Cheers.
I'm guessing this may be the case with all Amazfits, but I find it odd (on my GTS) that I can't delete a notification when it first appears on the watch screen and have to back out (or long press) and go into the menu > notifications > and delete it there. Seems like you should be able to just swipe left and delete? I tried using Notifcation for Amazfit app and setting 2X button press to clear last phone notification but doesn't seem to work.
I cant find data connection taggale in notification on my Samsung Galaxy A526U 5G .I can't add also.
Settings > Connections > Data usage > Mobile data (turn off/on)
If you want it on your notification screen then swipe from top > Three dots on top right > Edit buttons > find Mobile data and hold and drag onto your notification screen.
Sending the ADB Command to Enable Mobile Data Toggle
Once you’ve confirmed ADB is working, it’s time to run the command. First, enter the following command to enter ADB shell:
adb shell
Your terminal/command prompt should now show that you are within the shell environment of your device. Once you’re in, enter this next command:
settings get secure sysui_qs_tiles
This will output a comma separated list of names that represent your current Quick Settings tiles. Copy this list down (save it in your clipboard, to a text file, whatever.) If you do not save this list, all of your existing Quick Settings tiles will disappear in the next command. Next, enter the following command:
settings put secure sysui_qs_tiles "YOUROLDLIST,MobileData,Hotspot"
Where YOUROLDLIST represents the comma separated list of Quick Setting tiles that you saved just before and MobileData is the name of the Mobile Data Toggle, appended to the end of the original tiles list. Hotspot is the name of the Mobile Hotspot tile. Note the comma between the old list and the two additions, MobileData and Hotspot, and also note the use of quotation marks. Basically, all we’re doing is appending the name of the Mobile Data and Hotspot toggle to the end of our original tile list.
Once you enter this command, you should immediately see the Mobile Data and Hotspot toggle show up at the end of your Quick Settings tiles. You can then re-arrange it as you please so it will appear on the first page. This toggle will persist through reboots, but won’t survive a factory reset.