[How to] Disable vibrations on unlocking the phone via fingerprint scanner. - Xiaomi Mi A3 Guides, News, & Discussion

Xiaomi Mi A3 Android 10
How to disable vibration on unlock:
1. Download SetEdit app from the playstore
2. Add a new setting 'haptic_feedback_intensity'
3. Set its SETTING VALUE to 0
4. Save changes

Request
I saved this setting and everything is ok. But when reset my phone after uninstall setedit this setting not work

imirsay said:
I saved this setting and everything is ok. But when reset my phone after uninstall setedit this setting not work
Click to expand...
Click to collapse
Use adb instead, and it won't revert back after restart.
Code:
adb shell settings put system haptic_feedback_intensity 0

Hi,
i used this setting, is it not strange that it still works after an hard reset?

Thanks for the tips but it's disabled whole vibration system such as I am not getting vibration when a call received or after the call ends. Is there any way we can only disable vibration while unlocking the phone.
Thanks in advance.

sumeddhh said:
Xiaomi Mi A3 Android 10
How to disable vibration on unlock:
1. Download SetEdit app from the playstore
2. Add a new setting 'haptic_feedback_intensity'
3. Set its SETTING VALUE to 0
4. Save changes
Click to expand...
Click to collapse
Thank you for this. It actually worked when all the other ways of trying to stop touch vibrations didn't work.

sumeddhh said:
Xiaomi Mi A3 Android 10
How to disable vibration on unlock:
1. Download SetEdit app from the playstore
2. Add a new setting 'haptic_feedback_intensity'
3. Set its SETTING VALUE to 0
4. Save changes
Click to expand...
Click to collapse
How can I turn off it on Oppo F21 Pro

Related

Disable heads up notifications in lollipop (requires root)

Download SQLite editor
Open SQLite editor and choose apps
Choose Settings Storage
Choose Settings.db
Choose Global
Type in Search "Head"
Change value from 1 to 0 Save
Then Reboot
Big thanks to user AL_IRAQI for this important fix as it was a MAJOR annoyance and privacy issue for me on lollipop!
Are you referring to the notifications on lock screen?
If so, they are super annoying.
Pp.
Would this enable Pandora to be controlled from lock screen?
Nice!
Any idea on how to remove the quick connect and sfinder buttons from the notification panel?
me 2
Sent from my SM-N900T using XDA Free mobile app
PanchoPlanet said:
Are you referring to the notifications on lock screen?
If so, they are super annoying.
Pp.
Click to expand...
Click to collapse
go to settings then go to sound and notifications
you find options to control it there
toyanucci said:
Download SQLite editor
Open SQLite editor and choose apps
Choose Settings Storage
Choose Settings.db
Choose Global
Type in Search "Head"
Change value from 1 to 0 Save
Then Reboot
Big thanks to user AL_IRAQI for this important fix as it was a MAJOR annoyance and privacy issue for me on lollipop!
Click to expand...
Click to collapse
Hello,i had before a Galaxy S5, LG G3, and it worked with the SQlite editor procedure , but when installing SQlite on the M8 (grant supersu acces and all of that) it says that no database found (attached a screenshot below) , the same thing happens on my Moto G 2014, so i thought it can't be that i have the S-ON, i tried also changing SElinux to permissive but no luck :crying:
I solved this :good:
install headsoff from google play store. it works for me to disable heads up notification in my note 3.
goooooooood
it dosenot required root device

[MOD]No notch ? Welcome to the immersive mode ! Remove the notification bar

Hi,
Our Xiaomi MI 9T is splendid with its great AMOLED full screen without any notch or hole.
However, the web browsers like Chrome (and others apps) doesn't propose the possibility in the settings to remove the notification bar and to get a true immersive full screen mode.
No problem, adb is there!
No need to root the smartphone.
EDIT: I have tested "Immersive Manager Application" from Google Play Store and it's perfect. Very simple and it works even when you reboot your phone.
No more need to type adb commands below except at least few adb commands to grant the Secure Settings permission to the app. This is well explained by the application when you launch it the first time.
I let the adb commands below for information in case we had some "purists" who prefer adb than an immersive app.
1/ Enable the Developper mode
Go to Parameters/ About the phone
Click many times (at least 10) on the MIUI Version to activate the Developper mode
2/ Enable USB Debugging
Go to Parameters/... Others parameters/Developper options
Click on USB debugging
Click on Install via USB => You will have to connect to your MI account
Click on USB debugging (security parameters)
3/ Launch adb on your PC
Get adb.exe on the net (very easy)
Put it in a folder of your PC (for instance C:/adb)
Connect your smartphone to the PC
Launch a DOS command window
Go to the adb folder => cd /adb
To check if your smartphone is ready, type:
Code:
adb devices
If it's the first time, there will be a popup on your smartphone to authorize the adb commands
Then, normally your device will appear after typing "adb devices"
4/ Get the list of applications installed on your smartphone
Code:
adb shell pm list packages
Retrieve the name of the application(s) you want to remove the notification bar.
5a/ For instance, hide the notification bar only for Chrome and Google Photos
Code:
adb shell settings put global policy_control immersive.status=com.android.chrome,com.google.android.apps.photos
Note: Each time you enter this command, you cancel the previous one. You need to type only one command with all the apps you want to remove the notification bar (names of app are separated by a comma ,).
5b/ For instance, if you want to hide the notification bar for all the applications
Code:
adb shell settings put global policy_control immersive.status=*
6/ If you want to cancel this setting and put back the notification bar
Code:
adb shell settings put global policy_control null*
Enjoy your brillant full screen mainly when you are in dark mode.
:good:
Pls the screen..
Redmi K20 cihazımdan Tapatalk kullanılarak gönderildi
pidobeuliou said:
Hi,
Our Xiaomi MI 9T is splendid with its great AMOLED full screen without any notch or hole.
However, the web browsers like Chrome (and others apps) doesn't propose the possibility in the settings to remove the notification bar and to get a true immersive full screen mode.
No problem, adb is there!
No need to root the smartphone.
1/ Activate the Developper mode
Go to Parameters/ About the phone
Click many times (at least 10) on the MIUI Version to activate the Developper mode
2/ Activate USB Debugging
Go to Parameters/... Others parameters/Developper options
Click on USB debugging
Click on Install via USB => You will have to connect to your MI account
Click on USB debugging (security parameters)
3/ Launch adb on your PC
Get adb.exe on the net (very easy)
Put it in a folder of your PC (for instance C:/adb)
Connect your smartphone to the PC
Launch a DOS command window
Go to the adb folder => cd /adb
To check if your smartphone is ready, type:
Code:
adb devices
If it's the first time, there will be a popup on your smartphone to authorize the adb commands
Then, normally your device will appear after typing "adb devices"
4/ Get the list of applications installed on your smartphone
Code:
adb shell pm list packages
Retrieve the name of the application(s) you want to remove the notification bar.
5a/ For instance, hide the notification bar only for Chrome and Google Photos
Code:
adb shell settings put global policy_control immersive.status=com.android.chrome,com.google.android.apps.photos
Note: Each time you enter this command, you cancel the previous one. You need to type only one command with all the apps you want to remove the notification bar (names of app are separated by a comma ,).
5b/ For instance, if you want to hide the notification bar for all the applications
Code:
adb shell settings put global policy_control immersive.status=*
6/ If you want to cancel this setting and put back the notification bar
Code:
adb shell settings put global policy_control null*
Enjoy your brillant full screen mainly when you are in dark mode.
:good:
Click to expand...
Click to collapse
Thanks for the instructions bro... I like the immersive mode on all the apps but i do not in instagram app, What is the command to get the immersive mode on all the apps but not in some specifics one?
The setting is reset on reboots. How can it be persisted?
salzzz said:
The setting is reset on reboots. How can it be persisted?
Click to expand...
Click to collapse
Do you have root permissions? If the asnwer is "yes" you can do this:
Install terminal emulator from google play store. Open it and writte "su"
now writte this:
settings put global policy_control immersive.status=*
Tachan! you have immensive mode active. Only save the command in a note app. Always you reboot your phone the only thing you have to do is open terminal, su and paste your command.
A lot more easy and fast than do it with adb. the only "problem" is you need root.
If someone knows how to add an exception, please say so.
How do you show it on lock screen? Any ideas?
"Permission denial: writing to settings requires:android.permission.write_security_settings"
ramsyst said:
"Permission denial: writing to settings requires:android.permission.write_security_settings"
Click to expand...
Click to collapse
Did you manage to overcome this getting same error here
NVM, fixed it
ralphoberholzer said:
Did you manage to overcome this getting same error here
NVM, fixed it
Click to expand...
Click to collapse
Still getting the same error, how did u get around it ?
ramsyst said:
Still getting the same error, how did u get around it ?
Click to expand...
Click to collapse
Enable USB debugging (security settings) under developer options.
I used SystemUI Tuner as it allows for blacklisting apps (sucha as whatsapp) that don´t manage full screen well.
ralphoberholzer said:
Enable USB debugging (security settings) under developer options
Click to expand...
Click to collapse
Thank you! It worked, but as stated above, it reset after phone restart.
Maybe running a tasker command at boot might fix it ?
Edit: Use the Immersive Manager app (thank me later!)
ramsyst said:
Thank you! It worked, but as stated above, it reset after phone restart.
Maybe running a tasker command at boot might fix it ?
Edit: Use the Immersive Manager app (thank me later!)
Click to expand...
Click to collapse
Worked great, Thanks
pidobeuliou said:
Hi,
Our Xiaomi MI 9T is splendid with its great AMOLED full screen without any notch or hole.
However, the web browsers like Chrome (and others apps) doesn't propose the possibility in the settings to remove the notification bar and to get a true immersive full screen mode.
No problem, adb is there!
No need to root the smartphone.
1/ Activate the Developper mode
Go to Parameters/ About the phone
Click many times (at least 10) on the MIUI Version to activate the Developper mode
2/ Activate USB Debugging
Go to Parameters/... Others parameters/Developper options
Click on USB debugging
Click on Install via USB => You will have to connect to your MI account
Click on USB debugging (security parameters)
3/ Launch adb on your PC
Get adb.exe on the net (very easy)
Put it in a folder of your PC (for instance C:/adb)
Connect your smartphone to the PC
Launch a DOS command window
Go to the adb folder => cd /adb
To check if your smartphone is ready, type:
Code:
adb devices
If it's the first time, there will be a popup on your smartphone to authorize the adb commands
Then, normally your device will appear after typing "adb devices"
4/ Get the list of applications installed on your smartphone
Code:
adb shell pm list packages
Retrieve the name of the application(s) you want to remove the notification bar.
5a/ For instance, hide the notification bar only for Chrome and Google Photos
Code:
adb shell settings put global policy_control immersive.status=com.android.chrome,com.google.android.apps.photos
Note: Each time you enter this command, you cancel the previous one. You need to type only one command with all the apps you want to remove the notification bar (names of app are separated by a comma ,).
5b/ For instance, if you want to hide the notification bar for all the applications
Code:
adb shell settings put global policy_control immersive.status=*
6/ If you want to cancel this setting and put back the notification bar
Code:
adb shell settings put global policy_control null*
Enjoy your brillant full screen mainly when you are in dark mode.
:good:
Click to expand...
Click to collapse
I am sorry friend, bootloader unlocked ?
wilmerwils said:
I am sorry friend, bootloader unlocked ?
Click to expand...
Click to collapse
No, it's not necessary to unlock the bootloader.
You have just to activate the developper mode as I indicate it.
ramsyst said:
Thank you! It worked, but as stated above, it reset after phone restart.
Maybe running a tasker command at boot might fix it ?
Edit: Use the Immersive Manager app (thank me later!)
Click to expand...
Click to collapse
Yes, it's true. Each time you reboot the phone, you should loose the setting.
And good point, thank you Ramsyst, I didn't check on Google Play Store the myriad of immersive mode applications!!
I have tested "Immersive Manager Application" and it's perfect. Very simple and it works even when you reboot your phone. :good::good:
I had previously created a task with Tasker and AutoTools (paid version) to change the immersive mode with the "Custom Setting" feature. But knowing that there are many apps (free and paid version) doing that better than AutoTools, it's not usefull to describe how I did it.
pidobeuliou said:
Yes, it's true. Each time you reboot the phone, you should loose the setting.
And good point, thank you Ramsyst, I didn't check on Google Play Store the myriad of immersive mode applications!!
I have tested "Immersive Manager Application" and it's perfect. Very simple and it works even when you reboot your phone. :good::good:
I had previously created a task with Tasker and AutoTools (paid version) to change the immersive mode with the "Custom Setting" feature. But knowing that there are many apps (free and paid version) doing that better than AutoTools, it's not usefull to describe how I did it.
Click to expand...
Click to collapse
Thank you too! I didn't know this immersive mode was possible until i stumbled on your thread. Now, we can all enjoy that beautiful screen 100%!
No devices / emulator found ... Please help. I instal drivers do all on this topic
ramsyst said:
Thank you! It worked, but as stated above, it reset after phone restart.
Maybe running a tasker command at boot might fix it ?
Edit: Use the Immersive Manager app (thank me later!)
Click to expand...
Click to collapse
With Tasker you already have an option to make all apps you want to go immersive! There is no need to use any other command or app.
I believe everybody in the world should buy tasker
Is the best Android app. It may looks hard in the begining, but your imagination is the limit to do whatever you want.
Hi how can i used this on split screen but in full screen mode with status bar and navigation?
MrYuu said:
Hi how can i used this on split screen but in full screen mode with status bar and navigation?
Click to expand...
Click to collapse
You're right. I had never tested the split screen function. The notification bar is not hidden on split screen mode even when immersive mode is activated. The result is a bit weird as there is a mix of notification bar and app on the top of the screen.
"Google search" indicates that you are not the first one to face this issue... but apparently no solution has been found so far.
If somebody can help.

disabling of factory reset by xiaomi mi A2 lite

can anyone tell me what is easiest way to disable (or hide) function "reset phone" by xiaomi mi a2 lite
hogar1965 said:
can anyone tell me what is easiest way to disable (or hide) function "reset phone" by xiaomi mi a2 lite
Click to expand...
Click to collapse
Set a password on your account then create a new user (or login as a guest).
Settings -> System -> Advanced -> Multiple Users
This removes the ability to reset the phone and the password prevents switching to the admin account.
a1291762 said:
Set a password on your account then create a new user (or login as a guest).
Settings -> System -> Advanced -> Multiple Users
This removes the ability to reset the phone and the password prevents switching to the admin account.
Click to expand...
Click to collapse
yes, but there is somme problems,like "you don't have permition to change wifi network"..

How delete the vibration to lock screen on Mi A3

Well, if you as me want to remove vibration in the system then you need to do:
1) Open settings
2) Go to the accessibility
3) Go the vibration
3) Go to the touch vibration
4) Turn off it
Now you can have a fun
Thanks.
nadir4138 said:
Thanks.
Click to expand...
Click to collapse
You're welcome
Thank you, it helped a lot.
thnxxxx a lot............
LambLeeg said:
Well, if you as me want to remove vibration in the system then you need to do:
1) Open settings
2) Go to the accessibility
3) Go the vibration
3) Go to the touch vibration
4) Turn off it
Now you can have a fun
Click to expand...
Click to collapse
HI,
is it working on android 10?
i solved using setEdit app, adding manually the string 'haptic_feedback_intensity' with value 0

unable to activate swipe gestures

I'm unable to activate the swipe gestures one my device
Naman one said:
I'm unable to activate the swipe gestures one my device
Click to expand...
Click to collapse
Well, the explanation is yet given: TalkBack and gestures cannot coexist.
Perhaps because TalkBack needs buttons to associate the actions.
That's the problem
Talkback is not activated on my device yet I'm not able to activate the navigation gestures
Naman one said:
That's the problem
Talkback is not activated on my device yet I'm not able to activate the navigation gestures
Click to expand...
Click to collapse
Ah, well, strange.
Sure you have no accessibility feature on?
Nope.
Problem solved.
If anyone else is facing the same problem then proceed with the following steps.
Go to settings>additional settings>back up and reset>erase all data(factory reset)>RESET SYSTEM SETTINGS ONLY.
This will not result in any data loss,it just simply reset your device's system settings to it's default setting
Naman one said:
Problem solved.
If anyone else is facing the same problem, proceed with the following steps.
Go to settings>additional settings>back up and reset>erase all data(factory reset)>RESET SYSTEM SETTINGS ONLY.
This will not result in any data loss, it just simply reset your device's system settings to their default setting
Click to expand...
Click to collapse
No need to Reset, this is happening because of accessibility mode is on( accessibility shortcut -man at the bottom of the screen), So you have to disable the accessibility shortcut first, when go to enable gesture control, this will now work, thank me later XD
Just disable the accessibility shortcut and everything will work.

Categories

Resources