We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The rounded corners setting is in the headphones category:
treble_app/app/src/main/res/xml/pref_misc.xml
Line 64 in 5dbc37b
Also it seems to be in dp instead of physical px, therefore it needs to be adjusted depending on the dpi in the android settings.
If the settings where taken from the user as px, they could be converted to dp with something like
int dp = (int) Math.ceil(getResources().getDisplayMetrics().density * px);
according to https://stackoverflow.com/a/6656774
The text was updated successfully, but these errors were encountered:
Thanks. Would you mind doing a pull request for this?
Sorry, something went wrong.
Merge pull request phhusson#23 from boydaihungst/feat/nubia/shoulder-btn
3d44671
feat(nubia): add switch to enable/disable shoulder buttons/triggers
No branches or pull requests
The rounded corners setting is in the headphones category:
treble_app/app/src/main/res/xml/pref_misc.xml
Line 64 in 5dbc37b
Also it seems to be in dp instead of physical px, therefore it needs to be adjusted depending on the dpi in the android settings.
If the settings where taken from the user as px, they could be converted to dp with something like
according to https://stackoverflow.com/a/6656774
The text was updated successfully, but these errors were encountered: