[Q] remove Fade effect between apps - ONE Q&A, Help & Troubleshooting

Any clue on how to remove the fade effect when switching between apps?
I use latest ver of CM 11
Thanks
t

Settings>Developer Options>Transition animation scale -> set to 0
If you don't see developer options, then:
settings>about>tap 7 times on build number, then go back and you should have developer options

S M G said:
Settings>Developer Options>Transition animation scale -> set to 0
If you don't see developer options, then:
settings>about>tap 7 times on build number, then go back and you should have developer options
Click to expand...
Click to collapse
Thanks, solved

Related

root htc one mini 4.2.2?

Hello, how do i root htc one mini on 4.2.2? Tried oneclickroot but not working....???
Did you enable USB debugging before using One Click? It's hidden so you have to go to Settings > About device > Build number and tap on Build number 7 times until you will see a message “You are now a developer”., then go to Settings > Applications > Development > USB debugging and enable it.
Ecstacy42 said:
Did you enable USB debugging before using One Click? It's hidden so you have to go to Settings > About device > Build number and tap on Build number 7 times until you will see a message “You are now a developer”., then go to Settings > Applications > Development > USB debugging and enable it.
Click to expand...
Click to collapse
Tried that still not working????
I seem to be experiencing the same problem.
HTC One Mini 601s
Software Number: 1.25.708.2
Baseband: 1.19.40d.00.14_10.20.40.4408L
Kernel: 3.4.10-gae2031e
HTC ONE mini Debuging
Ecstacy42 said:
Did you enable USB debugging before using One Click? It's hidden so you have to go to Settings > About device > Build number and tap on Build number 7 times until you will see a message “You are now a developer”., then go to Settings > Applications > Development > USB debugging and enable it.
Click to expand...
Click to collapse
Just got my HTC one Mini yesterday and USB debugging was already enabled. I did however have to tap the build number 7 times to be able to change it if I so chose to.

[Q] Is there a way to add more reboot options to power menu? (Lollipop)

Title^^
?
I have only power which is the stock option but is there a way to add more? like reboot and recovery
AppEx213 said:
Title^^
?
I have only power which is the stock option but is there a way to add more? like reboot and recovery
Click to expand...
Click to collapse
You have to root your phone for that. Check if Xposed support included for Android 5, if yes you can do that with Xposed
rajneeshk said:
You have to root your phone for that. Check if Xposed support included for Android 5, if yes you can do that with Xposed
Click to expand...
Click to collapse
Xposed does not run on Android 5 (ART runtime), xposed only runs on DALVIK
For the reboot options I'm fine with Simple Reboot by Francisco Franco - https://play.google.com/store/apps/details?id=simple.reboot.com&hl=de
Cheers
hr_kaleu said:
Xposed does not run on Android 5 (ART runtime), xposed only runs on DALVIK
For the reboot options I'm fine with Simple Reboot by Francisco Franco - https://play.google.com/store/apps/details?id=simple.reboot.com&hl=de
Cheers
Click to expand...
Click to collapse
Simple reboot is fine, but its still an app. I wanted something that is on the power menu.
Is there nothing you can do to the framework apk or system ui?
rajneeshk said:
You have to root your phone for that. Check if Xposed support included for Android 5, if yes you can do that with Xposed
Click to expand...
Click to collapse
Everyone and their mother knows that Xposed is incompatible with Lollipop.
AppEx213 said:
Simple reboot is fine, but its still an app. I wanted something that is on the power menu.
Is there nothing you can do to the framework apk or system ui?
Click to expand...
Click to collapse
You can flash a custom ROM with that option i.e. Cataclysm.
AppEx213 said:
Title^^
?
I have only power which is the stock option but is there a way to add more? like reboot and recovery
Click to expand...
Click to collapse
Not on the stock framework (if you are rooted) atm as Xposed doesn`t support ART yet and maybe never will.
Pure AOSP and stock do not have the functionality to add more reboot options.
Without modifying anything else, the only thing you can add is a shortcut to settings, airplane mode, and the silent/vibrate/sound-thing.
frameworks_base/core/res/res/values/config.xml
Code:
<!-- Defines the default set of global actions. Actions may still be disabled or hidden based
on the current state of the device.
Each item must be one of the following strings:
"power" = Power off
"settings" = An action to launch settings
"airplane" = Airplane mode toggle
"bugreport" = Take bug report, if available
"silent" = silent mode
"users" = list of users
-->
<string-array translatable="false" name="config_globalActionsList">
<item>power</item>
<item>bugreport</item>
<item>users</item>
</string-array>
Lethargy said:
Pure AOSP and stock do not have the functionality to add more reboot options.
Without modifying anything else, the only thing you can add is a shortcut to settings, airplane mode, and the silent/vibrate/sound-thing.
frameworks_base/core/res/res/values/config.xml
Code:
<!-- Defines the default set of global actions. Actions may still be disabled or hidden based
on the current state of the device.
Each item must be one of the following strings:
"power" = Power off
"settings" = An action to launch settings
"airplane" = Airplane mode toggle
"bugreport" = Take bug report, if available
"silent" = silent mode
"users" = list of users
-->
<string-array translatable="false" name="config_globalActionsList">
<item>power</item>
<item>bugreport</item>
<item>users</item>
</string-array>
Click to expand...
Click to collapse
So I decompile framework-res.apk go to values and edit config.xml, search for silent and change false to true?
AppEx213 said:
So I decompile framework-res.apk go to values and edit config.xml, search for silent and change false to true?
Click to expand...
Click to collapse
This part is commented out (isn't included when built/compiled, used in source to usually provide info) and won't appear when you decompile it:
Code:
<!-- Defines the default set of global actions. Actions may still be disabled or hidden based
on the current state of the device.
Each item must be one of the following strings:
"power" = Power off
"settings" = An action to launch settings
"airplane" = Airplane mode toggle
"bugreport" = Take bug report, if available
"silent" = silent mode
"users" = list of users
-->
It tells you the possible options you can use in the power menu array
See this part, which is the actual array:
Code:
<string-array translatable="false" name="config_globalActionsList">
<item>power</item>
<item>bugreport</item>
<item>users</item>
</string-array>
Bug report is shown only if you enable it in Settings > Developer Options and User selector is only shown if you have multiple users.
"silent" isn't in the array (config_globalActionsList), but its a possible option as stated by the comment in source code, so you can add:
Code:
<item>silent</item>
into the array where you want it to be, and it'll show up in the power menu. You can also add settings and airplane mode as stated by the comment.
Adding additional possible entries (like reboot) requires modifying other source code, which you'll have to compile AOSP to do anyways which defeats the purpose of specifically modifying stock, except maybe in a case like Cataclysm ROM by atl4ntis. Or edit smali.
That icon on the right with the white circular arrow saves all that, if you put it in the dock is a very good substitute. Plus it's a wide choice...
I know it's not baking something into the OS but those after a quick, useful workaround it's a winner
How exactly would I get this working? Do I need to compile just one .apk or a complete ROM? I feel like I cannot install Lollipop without silent mode working...
rien-ne-va-plus said:
How exactly would I get this working? Do I need to compile just one .apk or a complete ROM? I feel like I cannot install Lollipop without silent mode working...
Click to expand...
Click to collapse
Flash Lollipop then take out framework-res.apk, decompile it on your PC and add it into the array. Recompile and push back onto device.
Lethargy said:
Flash Lollipop then take out framework-res.apk, decompile it on your PC and add it into the array. Recompile and push back onto device.
Click to expand...
Click to collapse
I cannot confirm this to be working. I installed a custom Lollipop ROM which had the silent mode in the framework-res.apk activated but when pressing the button in the shutdown menu it would simply switch to the "important" mode, thus letting more through than desired. Doesn't seem to be the old silent mode. I pulled the file, too, and checked the array configuration...
rien-ne-va-plus said:
I cannot confirm this to be working. I installed a custom Lollipop ROM which had the silent mode in the framework-res.apk activated but when pressing the button in the shutdown menu it would simply switch to the "important" mode, thus letting more through than desired. Doesn't seem to be the old silent mode. I pulled the file, too, and checked the array configuration...
Click to expand...
Click to collapse
Here is allready thread by garynych: http://forum.xda-developers.com/goo.../mod-3-power-menu-stock-5-0-1-deodex-t2997128 with restart option in power menu for deodex rom and extended power menu without restart for odex rom. The second one has the same issue as in your description.
Regards, Zagor
So I understand you don't have a silent mode either using those files, correct? Thanks for the link
BirchBarlow said:
Everyone and their mother knows that Xposed is incompatible with Lollipop.
You can flash a custom ROM with that option i.e. Cataclysm.
Click to expand...
Click to collapse
except my mum knows the workaround for xposed for lollipop.
not fond at Sony stock lollpop
Elluel said:
Pure AOSP and stock do not have the functionality to add more reboot options.
Without modifying anything else, the only thing you can add is a shortcut to settings, airplane mode, and the silent/vibrate/sound-thing.
frameworks_base/core/res/res/values/config.xml
Code:
<!-- Defines the default set of global actions. Actions may still be disabled or hidden based
on the current state of the device.
Each item must be one of the following strings:
"power" = Power off
"settings" = An action to launch settings
"airplane" = Airplane mode toggle
"bugreport" = Take bug report, if available
"silent" = silent mode
"users" = list of users
-->
<string-array translatable="false" name="config_globalActionsList">
<item>power</item>
<item>bugreport</item>
<item>users</item>
</string-array>
Click to expand...
Click to collapse
i cant find config.xml in Sony lollipop stock 270 framework
any solution???
AppEx213 said:
is there a way to add more? like reboot and recovery
Click to expand...
Click to collapse
Do the same as I did - instal the app Link2SD. It's very usefull app and I have the option of restarting from there in more options - reboot, quick reboot, reboot to recovery.
Elluel said:
Pure AOSP and stock do not have the functionality to add more reboot options.
Without modifying anything else, the only thing you can add is a shortcut to settings, airplane mode, and the silent/vibrate/sound-thing.
frameworks_base/core/res/res/values/config.xml
Code:
<!-- Defines the default set of global actions. Actions may still be disabled or hidden based
on the current state of the device.
Each item must be one of the following strings:
"power" = Power off
"settings" = An action to launch settings
"airplane" = Airplane mode toggle
"bugreport" = Take bug report, if available
"silent" = silent mode
"users" = list of users
-->
<string-array translatable="false" name="config_globalActionsList">
<item>power</item>
<item>bugreport</item>
<item>users</item>
</string-array>
Click to expand...
Click to collapse
sir can you point me to a site or link for aosp 7.1.1 nougat? or can you teach us here? thank you
ian97 said:
sir can you point me to a site or link for aosp 7.1.1 nougat? or can you teach us here? thank you
Click to expand...
Click to collapse
You just revived a 3-year-old thread, congrats.

Android 4.2.2 Security settings "Allow unknow sources" missing on 2016 Honda Civic

Android 4.2.2 Security settings "Allow unknow sources" missing on 2016 Honda Civic
Hi,
I have a 2016 Honda Civic LX (US/Canadian model) with Android 4.2.2.
I successfully enabled the Developer Mode with this methods:
- Go to HOME > Settings > System > Detail information.
- In the Android Settings window, click About.
- Click the Build Number seven times exactly.
- Now you will see the Please enter a passcord prompt.
- Click the top 4 items in order 1, 4, 2, 3 and you should unlock the developer mode.
Click to expand...
Click to collapse
But, even with the developer mode activated, I didn't find the setting to allow unknown sources.
So I'm still unable to install .APK files, such as: Honda Permission, Waze, etc.
Can someone help me to figure how I can enable this setting and install .APK files ?
Thanks in advance,
Marc

[SOLVED] MTCE GS 3.07 settings entries missing, clock does not work properly

My device info:
Build number: rk3368-userdebug 9 PQ2A.190205.003 eng.hct2.20190411.192110 test-keys
Kernel version: 4.4.167
MCU version: MTCE_GS_V3.07_3
In settings menu I don't see lot of std android settings (probably hidden for normal user).
I would like to enable split screen (it is disabled by default - 7 inch screen), but I can not enter developer options.
Standard android way with tapping build number is not working.
I also tried apps (e.g. "developer options) but it does not work - it shows "First enabled developer options".
I also tried rooting (simple way) with code (*#htc#root#) in factory settings, and with kingoroot. It does not work.
Do I need use adb for that?
Additionally clock is not working properly. After vehicle shutdown signal - radio is falling a sleep. After wakeup it looks like time freeze.
If I activate GPS time adjust it makes clock late 30 minutes.
If I activate internet time update it makes clock late 1h - probably because of winter / summer time switch, but I don't see that setting (also hidden).
Any help would be pleasent
I would try to change to stock rom.
But Im not sure if that would be even possible if I do not enable developer options first and next usb debug to access adb and flash mode.
Maybe it could be done by MCU update file? somehow make it to change system configuration?
SZAMAN92 said:
I would try to change to stock rom.
But Im not sure if that would be even possible if I do not enable developer options first and next usb debug to access adb and flash mode.
Maybe it could be done by MCU update file? somehow make it to change system configuration?
Click to expand...
Click to collapse
for what vehicle is that HU ?
i have same for opel, and have problems with stering wheel buttons, when i press next or back button it react like i press it 2 or 3 times :/
do you know how to enter recovery in that unit? maybe flash other MCU file ?
It is my device
https://xtrons.com/renault-megane-iii-fluence-android-9-0-pa79mg3rip
For me wheel buttons work well.
However try to check factory settings
Settings > Factory settings > enter code (126 in my case) > Keys
I have there option to change CAN bus to proper vehicle model.
Unfortunetaly I don't have experience with flashing such devices. Until now I was flashing only smartphones.
There were lot of tutorials how to do that. For Android auto HU I dont know even how to start.
For smartphone you could enter recovery by adb, but first you need unlock USB debugging. If you have access to developer options you could do that - that is not my cas.. sadly.
EDIT:
I found solution for time issue
https://forum.xda-developers.com/showpost.php?p=72946736&postcount=4
EDIT2:
Better solution
1. Get root
https://forum.xda-developers.com/showpost.php?p=76725981&postcount=740
2. Use that app
https://play.google.com/store/apps/details?id=ru.org.amip.ClockSync&hl=pl
EDIT3:
1. Malaysk ROM!!!
Clock work without any problem, I have split screen on my 7 inch device

Enable Hidden Dark Mode for pocophone f1 Miui10

For those of you who cannot wait until miui 11 - here is a easy trick to activate dark mode
How to enable dark mode
Connect your device to your PC , open command prompt in the same directory where ADB binary is stored
Enable Dark Mode: adb shell settings put secure ui_night_mode 2 Disable Dark Mode: adb shell settings put secure ui_night_mode 1
Reboot your phone to get the system-wide dark mode
*before doing these change your theme to classic version
*enable usb debugging security settings as well - once you activated dark mode you can turn it off.
im using global rom with locked bootloader
10.3.5.0
source:
http://c.mi.com/thread-2274658-1-0.html
Or just use eu roms and that option is built in.
As far as I understand, we have to enter these lines everytime if we want to switch from dark to white vice versa? I can't see any toggle after I enabled the dark mode. I even tried the (auto) mode and it is not changing.
Works great! MIUI 10 Beta 9.6.27, locked bootloader.
Thank you very much!!
mkozal said:
As far as I understand, we have to enter these lines everytime if we want to switch from dark to white vice versa? I can't see any toggle after I enabled the dark mode. I even tried the (auto) mode and it is not changing.
Click to expand...
Click to collapse
Yes you are right
There will be no toggle
They hide this toggle in poco phone but dark mode is still supported
For my case I don't change between modes
It will happen only once
Pavamarea said:
Works great! MIUI 10 Beta 9.6.27, locked bootloader.
Thank you very much!!
Click to expand...
Click to collapse
I am happy that it worked ???
Worked on Pocophone F1
Worked on Pocophone F1 (MIUI Global 10.3.7)
You are the BEST....I had this issue where I couldn't change to system mode (after plugin in the android car it changed to dark mode and won't come back to the default)....
I've tried a lot of stuff to change it back to default and nothing worked...
Now it worked thanks to you!!!
Regards,
Vinicius
that's what I'm getting even after setting the theme to classic mode.
Nfury00701 said:
that's what I'm getting even after setting the theme to classic mode.
Click to expand...
Click to collapse
You must activate developer options (security) for it to work.
I got the same issue that you before enable that option.
Regards,
vmantovani said:
You must activate developer options (security) for it to work.
I got the same issue that you before enable that option.
Regards,
Click to expand...
Click to collapse
the developer option is ON and it still showing this
There's another option below the developer options, Developer Options (Security Settings). You have to enable that. MIUI will ask if you want to enable it, just wait for 5 seconds and tap yes, and you're good to go.

Categories

Resources