Hello has año even able to remove the brightness slider in lollipop. Using sqlite did not work properly for me.
Sent from my SAMSUNG-SM-N910T using XDA Free mobile app
have you considered getting a 3rd party brightness manager?
I don't know about 5+, but on 4.4.4 the brightness slider hides itself when the phone detects an app that manages auto-brightness.
thedicemaster said:
have you considered getting a 3rd party brightness manager?
I don't know about 5+, but on 4.4.4 the brightness slider hides itself when the phone detects an app that manages auto-brightness.
Click to expand...
Click to collapse
Yes but if I hide the notification from that app I get a bug like this.
Sent from my SAMSUNG-SM-N910T using XDA Free mobile app
egren58 said:
Yes but if I hide the notification from that app I get a bug like this.
Sent from my SAMSUNG-SM-N910T using XDA Free mobile app
Click to expand...
Click to collapse
hi,
i am on Lollipop (software.. BOC3) N910F, and using 3 rd party app, Lux and i am happy to say it notification "scales" fine as can see in snapshot
Point is that it can scale properly?
Good luck
willcor said:
hi,
i am on Lollipop (software.. BOC3) N910F, and using 3 rd party app, Lux and i am happy to say it notification "scales" fine as can see in snapshot
Point is that it can scale properly?
Good luck
Click to expand...
Click to collapse
Yes but try hiding all notification including lux.
Sent from my SAMSUNG-SM-N910T using XDA Free mobile app
egren58 said:
Yes but try hiding all notification including lux.
Sent from my SAMSUNG-SM-N910T using XDA Free mobile app
Click to expand...
Click to collapse
hi ,
Sorry ,hiding my relevant notifications is not an option to me ,as my apps need "it " to keep in memory/function ,as to not be "close/kill "by device or Greenify (?)
It needs the Notifications to functions properly../stay in memory .(.You would notice i have certain apps ,GMD gestures also Swipepad ,Nortons security ,eCid app .. to read certain notifications ...etc etc ,which is very important for me,that it works 100%)
Obviously your needs seems to differ ,to me as long as it scales right i am happy !
good luck in your quest .
post note ..however in lockscreen it also scales ok ( with my notifications )
egren58 said:
Hello has año even able to remove the brightness slider in lollipop. Using sqlite did not work properly for me.
Sent from my SAMSUNG-SM-N910T using XDA Free mobile app
Click to expand...
Click to collapse
HERE. Simple guide
not-i said:
HERE. Simple guide
Click to expand...
Click to collapse
Not so simple for me. Lol i have no idea how to decompile
Sent from my SAMSUNG-SM-N910T using XDA Free mobile app
egren58 said:
Not so simple for me. Lol i have no idea how to decompile
Sent from my SAMSUNG-SM-N910T using XDA Free mobile app
Click to expand...
Click to collapse
Then you'll need a SecSettings.apk from a rom with it already modded.
I didn't mod the SecSettings.apk, but I was able to remove the brightness adjustment by editing the settings database directly.
Here are the steps:
1. Install SQLite Debugger, if you haven't already.
2. Launch SQLite Debugger and open /data/data/com.android.providers.settings/databases/settings.db.
3. Open "system" table
4. Modify the SQL query in the followin manner: "SELECT * FROM system WHERE name='notification_panel_brightness_adjustment'
5. Run the query (click on arrow in the top right corner)
6. You should see the query result with 1 entry
7. Click on it and in the popped-up menu select "Update value"
8. Remove "name='notification_panel_brightness_adjustment'" from the query (after SET keyword) and replace it with "value='0'" (without double quotes)
9. IMPORTANT: make sure that you still have the "WHERE _id = xxx" (xxx is some number that matches the ID of notification_panel_brightness_adjustment entry)! Do not modify it. For reference, on my phone this ID is 279.
10. Run the query. You should see a toast message "1 row updated"
11. Click "Commit" in the lower right corner. And once again click "Commit" in the popped-up dialog
12. Reboot you phone and you are done.
Disclaimer: Instructions are provided as-is. Use at your own risk.
vponomarev said:
I didn't mod the SecSettings.apk, but I was able to remove the brightness adjustment by editing the settings database directly.
Here are the steps:
1. Install SQLite Debugger, if you haven't already.
2. Launch SQLite Debugger and open /data/data/com.android.providers.settings/databases/settings.db.
3. Open "system" table
4. Modify the SQL query in the followin manner: "SELECT * FROM system WHERE name='notification_panel_brightness_adjustment'
5. Run the query (click on arrow in the top right corner)
6. You should see the query result with 1 entry
7. Click on it and in the popped-up menu select "Update value"
8. Remove "name='notification_panel_brightness_adjustment'" from the query (after SET keyword) and replace it with "value='0'" (without double quotes)
9. IMPORTANT: make sure that you still have the "WHERE _id = xxx" (xxx is some number that matches the ID of notification_panel_brightness_adjustment entry)! Do not modify it. For reference, on my phone this ID is 279.
10. Run the query. You should see a toast message "1 row updated"
11. Click "Commit" in the lower right corner. And once again click "Commit" in the popped-up dialog
12. Reboot you phone and you are done.
Disclaimer: Instructions are provided as-is. Use at your own risk.
Click to expand...
Click to collapse
Thanks. I found one. But now is to remove the sfinder bar lol.
Sent from my SAMSUNG-SM-N910T using XDA Free mobile app
egren58 said:
Thanks. I found one. But now is to remove the sfinder bar lol.
Click to expand...
Click to collapse
Oh, didn't notice that you already tried the SQLite route. But have you checked if this value stayed at '0' after reboot?
vponomarev said:
Oh, didn't notice that you already tried the SQLite route. But have you checked if this value stayed at '0' after reboot?
Click to expand...
Click to collapse
I actually went with the method posted a few pages back
Sent from my SAMSUNG-SM-N910T using XDA Free mobile app
egren58 said:
I actually went with the method posted a few pages back
Click to expand...
Click to collapse
Just out of curiosity, which one?
vponomarev said:
Just out of curiosity, which one?
Click to expand...
Click to collapse
Pulling a modded secsettinga with the option to disable the slider
Sent from my SAMSUNG-SM-N910T using XDA Free mobile app
vponomarev said:
Just out of curiosity, which one?
Click to expand...
Click to collapse
Any settings for sfiner in sqlite?
Sent from my SAMSUNG-SM-N910T using XDA Free mobile app
egren58 said:
Pulling a modded secsettinga with the option to disable the slider
Click to expand...
Click to collapse
Oh, ok. That works too
But for me it's just a one-time change ("set and forget" kinda thing), because I always use auto-brightness. Editing the DB is a quicker than modding the package.
vponomarev said:
Oh, ok. That works too
But for me it's just a one-time change ("set and forget" kinda thing), because I always use auto-brightness. Editing the DB is a quicker than modding the package.
Click to expand...
Click to collapse
Yeah true.
Sent from my SAMSUNG-SM-N910T using XDA Free mobile app
egren58 said:
Yeah true.
Sent from my SAMSUNG-SM-N910T using XDA Free mobile app
Click to expand...
Click to collapse
was u able to remove the brightness bar?
Souds hard to do man. U a true pro at it wish a new stuff like that
Related
Before anyone asks, yes I did search this topic on the forums Is there any way to disable the action of double tapping the home button?
it's in application settings, and at the bottom of the list there is none, also:
wrong fourm, go to q & a.
neaddean said:
it's in application settings, and at the bottom of the list there is none, also:
wrong fourm, go to q & a.
Click to expand...
Click to collapse
i don't think there is a "NONE" option in froyo. there is in gingerbread.
Sent from my MB860 using XDA App
no "none" option in froyo.
pukemon said:
no "none" option in froyo.
Click to expand...
Click to collapse
Correct
Sent from my MB860 using Tapatalk
pukemon said:
no "none" option in froyo.
Click to expand...
Click to collapse
Oh, I'm sorry. If you have ti backup, try making the double tap home point to something you dont use like news, then freeze that app in ti.
Someone posted a way to make double tap home do anything you want by editting build.prop. Maybe you can tweak that to get it to do nothing.
Piece of cake!
How to do this, on froyo.
1) Download SQLite editor free from market.
2) Open it, and scroll down to the Storage Settings(the last one with: com.motorola.android.providers.settings) -> settings.db -> settings
4) Scroll down to double_tap(3rd from the end), edit record and change the value to empty!
100% tested/working!
I am saving things all the time and it always says saving too clipboard... Where is it?
Sent from my SM-N900V using xda app-developers app
When keyboard is open, long press the microphone symbol (bottom row, between SYM and spacebar). A bar with six icons will pop up. 3rd from the left (looks like a battery to me) will open up anything in clipboard. This is the only way I'm aware of but not sure if there's another way.
Sent from my SM-N900V using XDA Premium 4 mobile app
Thanks for the help!!
Sent from my SM-N900V using xda app-developers app
Thanks for pointing this out. Also if you long press on one od the items in the clipboard, it opens a contextual menu with additional options for your clips. I like the lock feature. I've always used an app called "Clipper " but I'm gonna play with Samsung's Clipboard app and see if I like it .
Sent from my SM-N900V using Tapatalk
Thank you guys for this. I didn't know that was possible.
Is there a way to get to the clipboard if you're not using the Samsung keyboard? I am using Swype.
Thanks again.
hawkeye680 said:
Thank you guys for this. I didn't know that was possible.
Is there a way to get to the clipboard if you're not using the Samsung keyboard? I am using Swype.
Thanks again.
Click to expand...
Click to collapse
Good question. Occasionally I'm in some text editor and I see a panel of clipboard of copied and cut text snippets, but I don't know how to recreate it.
xblue95 said:
Thanks for pointing this out. Also if you long press on one od the items in the clipboard, it opens a contextual menu with additional options for your clips. I like the lock feature. I've always used an app called "Clipper "
Click to expand...
Click to collapse
that's what I use myself.
jmorton10 said:
that's what I use myself.
Click to expand...
Click to collapse
Yeah, I've been using Clipper for about 3 years now, the best I've found so far. I like the sync feature with the PRO version because it sync's across all my android device. I like that you can create sets, I have an email set that holds all my email addresses. Very handy little app. Haven't had any problems using it with my Note 3.
Sent from my SM-N900V using Tapatalk
So I'm looking in the hidden menu with the Quick Shortcut Maker app and searched screen mode and what do you know its there. Standard, Vivid, and Natural. I cant tell the difference when switching but its there. Just sharing info...:good:
Cant find this mode on secret menu..
Sent from my LG-D855 using XDA Free mobile app
Hmm maybe this has something to do with the difference in whites between screens (blue tint vs yellow tint)
samakos said:
Cant find this mode on secret menu..
Sent from my LG-D855 using XDA Free mobile app
Click to expand...
Click to collapse
It's not in the secret menu. You have to go through the app mentioned in the first post. At least that's how I found it. Hope this helps.
JeffyLube0 said:
Hmm maybe this has something to do with the difference in whites between screens (blue tint vs yellow tint)
Click to expand...
Click to collapse
What do you mean?
memtenn said:
What do you mean?
Click to expand...
Click to collapse
http://forum.xda-developers.com/tmobile-lg-g3/help/q-screen-blue-yellow-tint-t2820593
And from this app how i find this option for the screen??
Sent from my LG-D855 using XDA Free mobile app
samakos said:
And from this app how i find this option for the screen??
Sent from my LG-D855 using XDA Free mobile app
Click to expand...
Click to collapse
As soon as you open the app it says input keyword. Type screen mode and the tap done. Settings pops up tap it and then you will see settings Screen Mode tap it then tap on Try and it pops up.
I've tried changing it but I don't seem to see a difference. Although it could be me since I'm not very into detail. Can anyone tell which is the best setting?
It's probably a feature that wasn't finished and left in incomplete. That's probably why there isn't a difference and it's hidden. They have that accessibility thing for color that they might have gone with instead.
Sent from my LG-D851
I search for this with shortcut app and there is no "screen mode" on hidden menu or any other app in my phone.if I search for screen and mode there are options but not this one.
Which version and model are you running?
Mine is V10j for D855.
It is present in the Verizon 985 version, but does not seem to do anything.
badtzo said:
I search for this with shortcut app and there is no "screen mode" on hidden menu or any other app in my phone.if I search for screen and mode there are options but not this one.
Which version and model are you running?
Mine is V10j for D855.
Click to expand...
Click to collapse
It's hidden in the settings when you search for screen mode under the activities. Press the down arrow and a list will show, find the screen mode. Mine is V10i, SEA version. From what I see, they're all the same.
If you use an alternative launcher as in Nova you can get to the ScreenMode without installing any other app.
Simply press & hold on Home Screen, select Shortcuts, then from the list select Activities and scroll down to Settings (on my G3 it says there are 364 different settings to choose). Finally scroll through the list until you get to ScreenMode, tap on it and it will create a shortcut icon on your Home screen.
Tap on the icon and it launches ScreenMode.
Note: I didn't notice any differences with the choices available.
Same here no difference i am on v10H.
Nice find man. But I don't notice anything?
10j no difference.
My guess would be that they would add it with an update in the future.
Would actually be cool if you can have the option to make things more vibrant (not to say i'm not satisfied with the screen, but sometimes change can be nice)
DevilMayEmo said:
My guess would be that they would add it with an update in the future.
Would actually be cool if you can have the option to make things more vibrant (not to say i'm not satisfied with the screen, but sometimes change can be nice)
Click to expand...
Click to collapse
Too bad it doesn't mean anything right now. Oh well
Sent from my LG Gangster 3
DevilMayEmo said:
My guess would be that they would add it with an update in the future.
Would actually be cool if you can have the option to make things more vibrant (not to say i'm not satisfied with the screen, but sometimes change can be nice)
Click to expand...
Click to collapse
I sure hope so. I hope it's not the opposite, where they disabled it, but forgot to remove the code. I'd like a more vivid screen as well. I played with the color options in accessibility, but the results are... Ehh....
Here is a work around to the popular double tap to lock when using Nova Launcher.
All you need to do is to download "screen off and lock" from the Google Play store, then go into Nova's "gestures and buttons" settings menu and tie double tap to the screen off and lock app.
Then it should work as it does with the standard launcher.
Thank for the tip
Or if you have greenify you can tie the double tap to hibernate and it does exactly he same. Actually I prefer since, I use greenify on my phone anyways.
Sent from my iPad using Tapatalk
Hgneto said:
Or if you have greenify you can tie the double tap to hibernate and it does exactly he same. Actually I prefer since, I use greenify on my phone anyways.
Sent from my iPad using Tapatalk
Click to expand...
Click to collapse
Nice tip! Thanks!
What shortcut you use on Greenify? Hibernate or Hibernate+Lock Screen?
Or you can just double tap the top of the status bar works with any launcher
Thanks for that dude
tallman43 said:
Or you can just double tap the top of the status bar works with any launcher
Click to expand...
Click to collapse
No it doesn't.
stevemiddie said:
No it doesn't.
Click to expand...
Click to collapse
Or yes it does you are doing it wrong! Do you think I would post a tip if it didnt work! Tap the status bar twice anywhere along the top near the battery/wifi icons etc
tallman43 said:
Or yes it does you are doing it wrong! Do you think I would post a tip if it didnt work! Tap the status bar twice anywhere along the top near the battery/wifi icons etc
Click to expand...
Click to collapse
Apex Launcher Pro.............Galaxy Note 4 and it definitely does NOT.
stevemiddie said:
Apex Launcher Pro.............Galaxy Note 4 and it definitely does NOT.
Click to expand...
Click to collapse
Lol This is LG G3 Thread my friend how was I to know you had a Galaxy note 4 i'm not psychic It works perfectly on the LG G3. . . . .Post in the right thread next time here is a link in case you are lost >> http://forum.xda-developers.com/note-4 <<
tallman43 said:
Lol This is LG G3 Thread my friend how was I to know you had a Galaxy note 4 i'm not psychic It works perfectly on the LG G3. . . . .Post in the right thread next time here is a link in case you are lost >> http://forum.xda-developers.com/note-4 <<
Click to expand...
Click to collapse
Oooops! :crying:
I have the Note 4 and the LG G3 and was switching between forums.
My sincere apologies.
Scrren Off app + Nova Launcher Pro with the gesture option (double tap executing the screen off)
Just works! :good:
With 3rd party lock apps I had issues with the keylock activating even though i had smartlock set to deactivate my pin when my phone is connected to my pebble watch. So i now use tasker to double tap off with nova from anywhere on the screen.
In tasker set up a new task to mimic a press of the power button:
New task>code > run shell> Command> input keyevent 26
Tick use root access.
Then point novas double tap gesture to the task. Because its mimicking the power button press it doesn't interfere with smartlock.
Sent from my LG-D855 using xda premium
jimsey said:
With 3rd party lock apps I had issues with the keylock activating even though i had smartlock set to deactivate my pin when my phone is connected to my pebble watch. So i now use tasker to double tap off with nova from anywhere on the screen.
In tasker set up a new task to mimic a press of the power button:
New task>code > run shell> Command> input keyevent 26
Tick use root access.
Then point novas double tap gesture to the task. Because its mimicking the power button press it doesn't interfere with smartlock.
Sent from my LG-D855 using xda premium
Click to expand...
Click to collapse
Can you please explain how to "point novas double tap gesture to the task"? Thank you very much!
Hi
In nova settings > gestures> double tap> shortcuts> task shortcuts> select the name you gave to the task you created.
Sent from my LG-D855 using xda premium
jimsey said:
Hi
In nova settings > gestures> double tap> shortcuts> task shortcuts> select the name you gave to the task you created.
Sent from my LG-D855 using xda premium
Click to expand...
Click to collapse
Hi and thank you. I did that and it interacts with tasker on double tap, as i see the message from super su. I guess i didn't set up tasker as it should.. Any ideas?
Not sure but you might need to give the task in tasker an icon for it to work?
Sent from my LG-D855 using xda premium
jimsey said:
Not sure but you might need to give the task in tasker an icon for it to work?
Sent from my LG-D855 using xda premium
Click to expand...
Click to collapse
Did that also
Awesome Tip...!!!!!
Awesome Tip dude...!!!!!
Really helped.:good:
You can even use Greenify for this trick.
I noticed after selecting Google keyboard as default keyboard and disabling "Show app icon" in Advanced settings for Google keyboard, the "Select input method" notification icon is still visible.
I figured out that disabling the app "Swype for Honor" will make the icon disappear.
Of course. That icon let's you choose between keyboards. Disabling one will give you no choices at all.
Sent from my Galaxy Tab 3 using XDA Labs
Ya I'm aware of this. It just annoyed me so I fixed the issue.
Just might uninstall the unused keyboard and make system more snappy.
zinko_pt said:
Just might uninstall the unused keyboard and make system more snappy.
Click to expand...
Click to collapse
It won't make any difference in performance.
Sent from my honor 5X using XDA Labs
Cannot uninstall system apps unless rooted.
kevev said:
Cannot uninstall system apps unless rooted.
Click to expand...
Click to collapse
You can disable them though.
Sent from my honor 5X using XDA Labs
True. But Swype for Honor can't be disabled without root. I have root, but others may not. This is why I created this thread.
kevev said:
True. But Swype for Honor can't be disabled without root. I have root, but others may not. This is why I created this thread.
Click to expand...
Click to collapse
Did you disable other apps?
Sent from my Galaxy Tab 3 using XDA Labs
adriansticoid said:
Did you disable other apps?
Sent from my Galaxy Tab 3 using XDA Labs
Click to expand...
Click to collapse
Oops! I got confused with another thread. This app CAN be disabled as I stated previously. My bad.
kevev said:
Oops! I got confused with another thread. This app CAN be disabled as I stated previously. My bad.
Click to expand...
Click to collapse
Hahaha. For a second I was confused too.
Sent from my Galaxy Tab 3 using XDA Labs
kevev said:
I noticed after selecting Google keyboard as default keyboard and disabling "Show app icon" in Advanced settings for Google keyboard, the "Select input method" notification icon is still visible.
I figured out that disabling the app "Swype for Honor" will make the icon disappear.
Click to expand...
Click to collapse
There is another issue: I use Swiftkey and I can not disable both huawei and google keyboard. If I do it after the first usage it will turn itself back on. The only way to turn the icon off if you use a 3rd party keyboard is when you start to type tap and hold on the notification in the notification bar. Than you can disable the notification for selecting keyboard. Unfortunatelly what this all does that you won't see the tiny icon at the top but you will have the notification in the notification center (which basicly you won't see unless you pull down the center.). Obviously these are the options withouth root with it you can do whatever you want
malnabokor said:
There is another issue: I use Swiftkey and I can not disable both huawei and google keyboard. If I do it after the first usage it will turn itself back on. The only way to turn the icon off if you use a 3rd party keyboard is when you start to type tap and hold on the notification in the notification bar. Than you can disable the notification for selecting keyboard. Unfortunatelly what this all does that you won't see the tiny icon at the top but you will have the notification in the notification center (which basicly you won't see unless you pull down the center.). Obviously these are the options withouth root with it you can do whatever you want
Click to expand...
Click to collapse
But an unrooted phone feels like really restricted for me.
Sent from my Galaxy Tab 3 using XDA Labs
I can absolutely understand your opinion and sooner or later I will do it as well but I just wanted to leave a kind of solution for those who does not want to do it yet
adriansticoid said:
It won't make any difference in performance.
Sent from my honor 5X using XDA Labs
Click to expand...
Click to collapse
That's not my experience. I've uninstalled all keyboards and replaced them with a updated Swipe and it really feels quicker to launch keyboard.
Other way to do it is to clean data, stop app, then disable it. It might ask if we want to uninstall updates and that's a yes.