Change Hardware Shortcut/Accessibility Bindings - Samsung Galaxy S20 / S20+ / S20 Ultra Questions &

Hi Guys,
Just wondering if there is a way to change the accessibility binding on a S20 Ultra.
At the moment I have it set on the default (i think),
where on power+vol-up = reverse colour (negative view)
and power+vol-down = take screenshot.
Is it possible to reverse this so the power+vol-down = reverse colour, or set the reverse colour (negative view) to the double power press, instead of the camera.? Why? because i toggle between the regular view and negative often, but don't need the screenshot. And pressing, the power+vol-down with the thumb is allot easier.
Thank you.

Related

eInk update modes

There seems to be very little actual documentation on the various eInk update modes.
Most of the information seems to have been extracted from working code.
Some of that code does not seem to be optimal in any case.
I'd like to start this thread on a discussion of the update modes.
You can look at all the code posted, but the bottom line is that eInk mode is configured by passing six discrete pieces of information to the EPD driver.
These six pieces may be wrapped up into a single static entity.
Name of entity requesting change (for logging purposes only)
Region, one of enumRegion[] (Region 4-7)
A rectangle, normally {0, 0, 600, 800}
Wave, one of enumWave[] (GC, GU, DU, A2, GL16, AUTO)
Mode, one of enumMode[] (INACTIVE, ACTIVE, ONESHOT, CLEAR, ACTIVE_ALL, ONESHOT_ALL, CLEAR_ALL)
Threshold, an int 1-15, only applies to A2 mode
A2 is the one bit, fast drawing method. It leaves ghosting behind.
In some applications, you would like to enable faster scrolling in A2 mode and then have it revert to "normal" upon completion.
I have an application with a full screen scroll.
After experimenting with the values, these two configs seem to do the job nicely.
Code:
configA2Enter = makeConfig(rpc, waveEnums[WAVE_A2], regionEnums[REGION_6], modeEnums[MODE_ACTIVE_ALL], THRESHOLD);
configA2Exit = makeConfig(rpc, waveEnums[WAVE_AUTO], regionEnums[REGION_6], modeEnums[MODE_ACTIVE_ALL], 0);
No user intervention is necessary, it scrolls quickly and redraws a clean image when done.
(A view.invalidate() is necessary after you invoke configA2Exit)
Does anybody have any further insight into these values or suggestions for improving them?
Some additional information on the A2 ("no refresh", 1 bit) mode.
Some of the other modes can be selectively applied to portions of the screen.
The A2 mode may only be applied to the entire screen.
The threshold value, which some may construe as "brightness" or "contrast"
is the cutoff threshold between black and white of the original image.
A value of 1 will only generate black in the darkest areas of the original image.
A value of 15 will only generate white in the whitest areas of the original image.
That is, 1 will give you a light image, 15 a dark image.
Renate NST said:
Some additional information on the A2 ("no refresh", 1 bit) mode.
Some of the other modes can be selectively applied to portions of the screen.
The A2 mode may only be applied to the entire screen.
The threshold value, which some may construe as "brightness" or "contrast"
is the cutoff threshold between black and white of the original image.
A value of 1 will only generate black in the darkest areas of the original image.
A value of 15 will only generate white in the whitest areas of the original image.
That is, 1 will give you a dark image, 15 a light image.
Click to expand...
Click to collapse
Nice find! I didn't know that was a B/W threshold. But I think you meant "1 gives a light image and 15 a dark image".
I've just tried using this in NoRefreshToggle, but the result was not as good as before. The image is much more just solid black and white because you can't see the dither patterns that represent grey (they appear only at very specific white levels, which would be nice to tweak too).
What I actually use for "contrast" adjustment in NoRefreshToggle is a different approach. Using a fixed threshold of 14 (dark image), I've managed to lower the black level (turning it more greyish) to achieve a smaller color range. This way, the dither patterns appear more often. However, my technique to achieve this effect is not so elegant: I overlay the entire screen with a semi-transparent white pane. This has the inconvenient of controlling the pane visibility: whenever A2 mode is turned off (by user or system), I need to hide the pane View.
If I could temporarily avoid the automatic changing of screen modes by the system, this would be much simpler. I've had no success at this issue so far.
marspeople said:
I think you meant "1 gives a light image and 15 a dark image".
Click to expand...
Click to collapse
Yup, good catch. The preceding two sentences were correct. I edited the third.
I have a demo panning grayscales. It's easy to see where the threshold is occurring. Shown below.
Oh! I did see something about the dither modes.
They would certainly be useful for video, less so for text.
I think a system-wide use of A2 would be a bit counterproductive.
The fonts look better with 16 shades.
The best use would be to have browsers and viewers use A2 for panning and zooming.
And another thing:
I don't know how you are getting the dither in there, but since you are doing an overlay anyway,
maybe you should try a halftone screen approach to see how it would work.
The simplest halftone screen would be a checkerboard with two different transparencies.
That wouldn't sacrifice too much resolution.
Renate NST said:
I think a system-wide use of A2 would be a bit counterproductive.
Click to expand...
Click to collapse
i seems to me that n-r mode would be much more usefull if would could regulate when its on a and when off. Its quite pain running the app again and again. it seems to me that quicker reaction is much better than nicer pictures in average use - pdf reading, browsing, video, managing system...
marspeople said:
I've just tried using this in NoRefreshToggle, but the result was not as good as before. The image is much more just solid black and white because you can't see the dither patterns that represent grey (they appear only at very specific white levels, which would be nice to tweak too)
Click to expand...
Click to collapse
I don't think the dithering can be 'tweaked' as such. It's caused by the reduction of 24-bit color images to the 16-bit colorspace of the OS. Dithering is performed by the graphics hardware to prevent obvious colour banding, and there's no OpenGL functions to control dithering parameters.
The A2 mode seems to choose a threshold value for black in the 16-bit colorspace. Values above this are white. In order to obtain black and white dithering we have to pick values in the 24-bit colorspace which all lie in the same 16-bit band.
The easiest way I've found is to keep the R and G values at 255 and vary the B value. I think the default threshold lies at 255,255,198. If you start at that and increase the B value you get 7 dithered grey shades before you reach white.
Guys, as far as i know, eink display is build of tiny capsules, much smaller that one pixel is, and a chip is joining them into pixels. So mayby there is a way to divide single pixel into 2 or even 4? It is much much work, but it would make us easier draw some tones of monochrome? Example: to get dark gray, instead of displaying one of five black pixels white, we can make one's "subpixels" 3/4 black, 1/4 white.
Does it make sense/do you get it?
Renate NST said:
I think a system-wide use of A2 would be a bit counterproductive.
The fonts look better with 16 shades.
The best use would be to have browsers and viewers use A2 for panning and zooming.
Click to expand...
Click to collapse
I agree with you. But having temporary exclusive control of A2 mode would make my application more efficient. I don't intend to use A2 system-wide.
Renate NST said:
And another thing:
I don't know how you are getting the dither in there, but since you are doing an overlay anyway,
maybe you should try a halftone screen approach to see how it would work.
The simplest halftone screen would be a checkerboard with two different transparencies.
That wouldn't sacrifice too much resolution.
Click to expand...
Click to collapse
I just tried this but I've got nothing more than a simply darker and checkered image. I don't understand how it would be better.
marspeople said:
I don't understand how it would be better.
Click to expand...
Click to collapse
Well, halftone screens have been around forever.
Think of it this way, it would give you two different thresholds.
With a bigger pattern you would get more thresholds but a coarser pattern.
That is always the way with dithering or halftone.
Probably a screen would not work well with an underlying dither.
A useful observation from http://forum.xda-developers.com/showthread.php?t=1502723&page=11 is that by listening to the screen you can hear screen activity.
After a quick test I suspect ONESHOT mode allows the screen to enter a power saving mode (in which the screen is completely silent) after a few hundred ms of inactivity, while ACTIVE prevents it. No idea whether there are other issues involved.
The native Reader.apk uses GU, ONESHOT_ALL when turning pages.
Every 6th page it uses GC, ONESHOT_ALL.
In an overnight test with the nook screensaver / lock screen mode inhibited by my application and no screen updates, I obtained power consumption of 0.75% / hour with ONESHOT mode. In a previous test with ACTIVE mode I got ~7% / hour with the same scenario(!)
With fast screen updates of ~ 1Hz ONESHOT does not appear to give any power saving benefit over ACTIVE mode, and a quiet hiss can be heard from the screen at all times in both modes at this refresh rate. I think this indicates the ONESHOT mode allows the screen to enter a power saving mode after a period of inactivity.
Neither of these were scientific tests but I strongly suggest trying ONESHOT mode in favour of ACTIVE whenever using A2 mode.
Well, there must be some benefit sometime to the ACTIVE mode or they wouldn't have it.
It's hard to differentiate the different modes, but it seem that ACTIVE responds quicker with less delay.
I switch to ACTIVE_ALL, A2 for panning and switch back to ONESHOT_ALL, AUTO afterwards.
(I don't use full-time A2).
See my demo of panning: http://forum.xda-developers.com/showthread.php?t=1563645
I'm running about 7%/hour drain. My Nook is not suspending when I do a simple power button click. I don't know why.
A few folks seem to be using EpdController in a useful manner.
Their use of Java reflection is clever, but it's not supposed to be that difficult.
I wrote a Java stub (basically declarations) for EpdController and wrapped it in a jar.
If you just put this jar in your compilation classpath with your normal android.jar
then you will be able to use the EpdController without all the fuss and muss.
For example, in my latest (unreleased) version of UsbMode I want the blinker to go on and off cleanly:
Code:
EpdController.setRegion("UsbMode", EpdController.Region.APP_3, blinker, EpdController.Wave.DU);
That's it, one line, no initialization.
The EpdController class was designed to handle such trivial uses.
Note: This jar itself has no functionality, all the method bodies are {}.
You will have to import android.hardware.EpdController
The 1.2 update uses a different EpdController and has a new EpdRegionParams.
This may or may not break code written for previous versions.
The best way to write code to use EpdController is to have it detect if there is no Epd
(i.e. for other devices), the old version or the new version.
Wrap a try/catch around a Class.forName("android.hardware.EpdController").
Wrap a try/catch around a Class.forName("android.hardware.EpdRegionParams").
The new epd.jar in the signature will allow you to compile without using redirection both the old and the new.
For details on the changes, see: http://forum.xda-developers.com/showpost.php?p=35390192&postcount=8
Bump & additional info.
By experimenting and reading documentation for other eInk controllers I've figured out the following:
Controllers support different algorithms for updating the pixels depending on the precision of the gray scale required and the compensation for previous ghosting.
On the Nook, we have the choice of waveform modes:
GC
GU (gray update)
DU (direct update)
A2
GL16
AUTO (auto selection of algorithm)
The screen can be divided up into regions where different algorithms may be used.
Some controllers support 15 regions, ours supports 8.
4 of these regions are earmarked for system usage, specifically:
Toast (popups)
Keyboard (soft keyboard layout)
Dialog (popups)
Overlay
The remaining 4 regions are left for the user.
Note: "HwRegion" is an enum for the complete 8 regions, "Region" is an enum for the 4 user regions.
An example: In my audio recorder I have two regions set aside for the VU bar graphs.
By setting these two regions to DU I get rid of update clutter and the response is quicker.
Currently, the EpdController in the Nook only operates with portrait coordinates.
If you wish to use this while in landscape mode you will have to rotate the coordinates first yourself.
It's sometimes hard to see exactly what/if some EPD setting is doing.
A good way to check it is to set a region for one half the width of whatever active graphic element you are trying to improve.
The difference can be very clear.
Renate NST said:
There seems to be very little actual documentation on the various eInk update modes.
Most of the information seems to have been extracted from working code.
Some of that code does not seem to be optimal in any case.
I'd like to start this thread on a discussion of the update modes.
You can look at all the code posted, but the bottom line is that eInk mode is configured by passing six discrete pieces of information to the EPD driver.
These six pieces may be wrapped up into a single static entity.
Name of entity requesting change (for logging purposes only)
Region, one of enumRegion[] (Region 4-7)
A rectangle, normally {0, 0, 600, 800}
Wave, one of enumWave[] (GC, GU, DU, A2, GL16, AUTO)
Mode, one of enumMode[] (INACTIVE, ACTIVE, ONESHOT, CLEAR, ACTIVE_ALL, ONESHOT_ALL, CLEAR_ALL)
Threshold, an int 1-15, only applies to A2 mode
A2 is the one bit, fast drawing method. It leaves ghosting behind.
In some applications, you would like to enable faster scrolling in A2 mode and then have it revert to "normal" upon completion.
I have an application with a full screen scroll.
After experimenting with the values, these two configs seem to do the job nicely.
Code:
configA2Enter = makeConfig(rpc, waveEnums[WAVE_A2], regionEnums[REGION_6], modeEnums[MODE_ACTIVE_ALL], THRESHOLD);
configA2Exit = makeConfig(rpc, waveEnums[WAVE_AUTO], regionEnums[REGION_6], modeEnums[MODE_ACTIVE_ALL], 0);
No user intervention is necessary, it scrolls quickly and redraws a clean image when done.
(A view.invalidate() is necessary after you invoke configA2Exit)
Does anybody have any further insight into these values or suggestions for improving them?
Click to expand...
Click to collapse
Excellent work! Do you happen to understand/can write up what the various fast mode/no refresh hacks do/how they use these different modes?
I've had X 'running' on my nook but only by triggering a full refresh every few seconds, and wondered how I could be more selective.
My reading of Norefresh was that it was doing something like parsing android log structures for areas that have changed.
Is there an easy way to trigger a refresh of part of the display from userspace, preferably directly on the driver or fb?
As for where the dithering is done, my guesswork is this is done by a blob running on the DSP module within the OMAP (which is perhaps the only interesting use of it I've seen).
Dave
Just done some playing writing directly to the entires in /sys/class/graphics/fb0 ; so for example:
echo -n 100,100,200,200,0,14 > epd_area
echo 2 > epd_refresh
causes the square 100,100->200,200 to be refreshed
the 14 being REGION(8)+CLEAR(4)+ONESHOT(2)
the 0 is wvfid+threshold*65536 I think.
I've put some code that runs under X to trigger updates; here (actually the comment is wrong, it's currently using oneshot+clear);
I never managed to get active to work.
http://forum.xda-developers.com/showthread.php?p=42393733#post42393733
Dave

Overriding nexus buttons functions

Hello!
My wish is to make an app accessible in the fastest way possible, without going back to home screens or other menus.
The app is 'display filter'.
I used Screen Filter for years (I think it's from XDA), I recently switched to display filter because it offers an overlay bar to adjust on-the-fly the amount of % filter without switching focus to the options screen.
Well, I would like this to be activated by the long press (or something else, a gesture, or a combination of hardware buttons (which on the nexus 7 are only 3...volume up-down + power). I usually read comics, and that app is very helpful even with daylight (also to have some privacy in case you're surrounded by people).
Is it possible to do what I am asking?
I also thought of 'wave launcher'....but I think it doesn't work while I am using the comic reader....that means I would turn page whenever I would have to bring up the wave launcher....so that doesn't work.
Any ideas? Leaving the display filter always active is not an option (at least not the best one).
Sorry for reviving a dead thread, but I have a solution to your problem. GMD gesture control is an app that allows you to configure your own multitouch gestures, and I think that you'd be able to make one that opens your screen filter app. The full version of the app costs ~$5 (well worth it in my opinon,) so if you reply I could try it out for you

[Q] Split Screen Wallpaper

Hi, I'm trying to create a multi-screen wallpaper setup like in this build (http://mycolorscreen.com/2014/07/29/iren/) but how does one shrink their desired wallpaper to fill just half the screen? I tried bitmap but the scaling makes it difficult and blurry.
Thank you in advance.
-edit
I just noticed that the on-screen home buttons are gone but it doesn't appear to be the auto-hide key app cause that would leave a red line. I'm using a LG G3 and would love to mask it somehow.

[APP] Arc Lighting - Custom Navigationbar for Galaxy Note 10 (hide chin)

(note to galaxy note 10 users set samsung navigatiomode to gesturemode then go into arc lighting and move the buttons up vertically as they are outside of view using gesture mode will make the bar much thinner than normal, force navbar color to black then change the buttons to a line and push them to the edge, this will hide the chin by causing an illusion of the button being closer to the edge than it actually is, the upside to this is that you both get gesturebased navigation and tapbased, by forcing button size it's also relatively easy to hit the buttons)
Download (xda members get free access, will provide unlock codes to any xda member who asks)
https://play.google.com/store/apps/details?id=com.symetium.arclightingnavigationbar
Full Description:
Arc Lighting Navigation Bar is the most advanced custom navigationbar on the market, you can do everything from setting a custom icon per button coloring it after your current wallpaper or app you use or move the buttons up and down both inside and outside of layers, you can apply a colored layer behind each button individually and you can curve each corner of that layer individually you can also set an outline around each layer invidually and you can curve each corner individually aswell this outline can ofcourse change color after your wallpaper or app you're using and you can ofcourse adjust transparency and color lightness as with all other layers, you can force a custom tapspace for each button individually if you feel it's too small for your finger just increase the space and it will be much easier to tap the button, you can set the each individual layer such as the navigationbar or preset icon to change color after the app you're using or after the wallpaper you have both on the homescreen and inside an app, if you prefer to have the wallpaper color even inside the app you're using you can do that too you can also adjust transparency and color lightness if you prefer a darker or lighter color, you can apply an outline to each colored layer individually you can also curve each corner of this outline individually as well as the layer itself, arc lighting custom navigationbar also features modes that you can create and delete as you wish, you can set a custom configuration for how the bar should look and behave inside an app you can set a custom configuration for how the bar should look and behave inside an app in landscape and in portrait, you can do the same on the homescreen both in landscape and in portrait, arc lighting navigationbar comes with various presets such as pc mode which is designed for mouse and keyboard use and a higher dpi setting simply edit only landscape with this mode and have a pc ui, only enable when in landscape, arc lighting navigationbar also features a lighting system that let's you make each button glow individually you can also adjust the glow or turn it off all together, you can have the home button and or back button and or recent apps button pulse when charging, you can use each button individually as a battery indicator and make them change color depending on your charge, you get all this and much more in the most advanced navigationbar app on the market, arc lighting navbarigationbar also comes with various system modes, if you want the best experience choose advanced mode or rootmode, download the simple to use enabler software to give your device the neccessary permissions for advanced mode so you don't have to mess with adb, if you don't want to do this simply choose simple mode this is slightly more limited than advanced more as it will run ontop of your current navigationbar and it doesn't support transparency.
Features:
- Advanced color system with multiple layers of colors that can be enabled or disabled with adjustable transparency or color lightness and or change depending on wallpaper or app.
- Tap Space customization to adjust how big or small you want the Tap Space to be (smaller is better for a mouse and bigger is better for a finger)
- Movement system for each icon to move icons up and down or side to side both inside a layer or with the layer
- Full support for icon packs per icon and preset white or wallpaper/app colored icons with support for glow and lighting indicators
- Lighting system for each individual icon for notifications and various indicators
- PC mode preset for mouse and keyboard use (try to create Windows XP)
- Modes system that lets you set how the bar behaves in landscape and or portrait in-app and or the home screen by default you edit all so uncheck edit all variants to edit individually
i wanted to update everyone on what happened, the app simply died because the developer i worked with simply vanished, i wanted to post this as many of you have noticed i haven't sent out free codes as i should to xda members, my app arc lighting which i put years of my life in including money died, the person i worked with just disappeared, i am not accusing him he said he had corona so i am trying not to think anything i tried to be considerate but i asked whats been happening, i paid money last year to make changes to the app changes which haven't been made and it ended up just dying because it's broken
the last few days i received strange emails from someone claiming they have the sourcecode for something and wanting to sell it to me but they never said for what so i asked what this was about they refused and eventually when i said i'm not interested i received this
---- Unknown Unknown skrev ----
Okay
I am sure someone will pay bitcoin for
com.symetium.holepunchcameraeffects
On Tuesday, 27 July 2021, Jonathan wrote:
> Well i don't want it thank you for your time
> ________________________________
> Från: Unknown Unknown <@gmail.com>
> Skickat: tisdag 27 juli 2021 21:13
> Till: Jonathan
> Ämne: Re: Source Code Purchase
>
> Depends how much you want it.
-------------------------------------------------------
i've had contacts with admins on this website who promoted my app, and some people have helped me in the past i wonder if anyone can help me as i am clueless on what to do, the developer i did work with simply is missing, and i don't believe he would do anything to me, i know two people who have the sourcecode, and i do trust them so i don't really know whats happening, i also have no idea why anyone would even want the sourcecode, the functionality is 5% of competing apps that does exactly the same thing, what people seem to like is my ui design and that can easily be copied.

Quick panel: negative display

Hi,
Is there a way to add negative display button in the quick settings panel. It was there on my Pixel and was useful while reading. As most of our web pages are white background, negative display acts as dark mode for everything.
It is not so comfortable to go to settings n search for colour inversion everytime i need it.
Please let me know if there is some mod, app to do so.
Thanks.
I think the best you can find here is Wind Down Mode from Settings>Digital Wellbeing>Wind Down. It's not available via Quick Settings though.
I found a quick shortcut to access colour inversion not in quick panel though
Accessibility/ Advanced Settings/ Direct Access/ Side and Volume Up Keys
Toggled on the Colour inversion option.
Now as soon as i press these 2 keys together volume up and side key (power/bixby key) i have colour inversion and i feel this is faster way to access it even than the quick panel.

Categories

Resources