Obsolete
Status Update
Comments
sh...@gmail.com <sh...@gmail.com> #2
Looking so good new version
mr...@gmail.com <mr...@gmail.com> #3
Thank you for reporting this issue.
Please provide the below details to debug this issue further.
1. Please attach your sample android project which reproduces the issue, zip it and share
2. Explain the steps to reproduce the issue with your apk. Provide all necessary information including preconditions if any, to reproduce the issue.
3. Android bug report
After reproducing the issue, press the volume up, volume down, and power button simultaneously. This will capture a bug report on your device in the “bug reports” directory. Attach the bug report file to this issue.
Alternate method:
After reproducing the issue, navigate to developer settings, ensure ‘USB debugging’ is enabled, then enable ‘Bug report shortcut’. To take bug report, hold the power button and select the ‘Take bug report’ option.
4. Screen Record of the issue
Please capture screen record or video of the issue using following steps:
adb shell screenrecord /sdcard/video.mp4
Subsequently use following command to pull the recorded file:
adb pull /sdcard/video.mp4
Attach the file to this issue.
Please provide the below details to debug this issue further.
1. Please attach your sample android project which reproduces the issue, zip it and share
2. Explain the steps to reproduce the issue with your apk. Provide all necessary information including preconditions if any, to reproduce the issue.
3. Android bug report
After reproducing the issue, press the volume up, volume down, and power button simultaneously. This will capture a bug report on your device in the “bug reports” directory. Attach the bug report file to this issue.
Alternate method:
After reproducing the issue, navigate to developer settings, ensure ‘USB debugging’ is enabled, then enable ‘Bug report shortcut’. To take bug report, hold the power button and select the ‘Take bug report’ option.
4. Screen Record of the issue
Please capture screen record or video of the issue using following steps:
adb shell screenrecord /sdcard/video.mp4
Subsequently use following command to pull the recorded file:
adb pull /sdcard/video.mp4
Attach the file to this issue.
[Deleted User] <[Deleted User]> #4
1. Code Sample attached. Cannot attach the original app code because of copyright.
2. Steps to reproduce it:
1. Tap on the first image (this activity is portrait)
2. It will go to a landscape ativity
3. Tap back button
4. Observe that the previous activity goes to portrait, then to landscape and finally portrait again.
Note: On the original app is happening always. On this code sample I was able to reproduce it 5/10 times.
4. Video attached, error on the last seconds.
2. Steps to reproduce it:
1. Tap on the first image (this activity is portrait)
2. It will go to a landscape ativity
3. Tap back button
4. Observe that the previous activity goes to portrait, then to landscape and finally portrait again.
Note: On the original app is happening always. On this code sample I was able to reproduce it 5/10 times.
4. Video attached, error on the last seconds.
ab...@linkedin.com <ab...@linkedin.com> #5
Could you please share the bugreport too?
Android bug report
After reproducing the issue, press the volume up, volume down, and power button simultaneously. This will capture a bug report on your device in the “bug reports” directory. Attach the bug report file to this issue.
Alternate method:
After reproducing the issue, navigate to developer settings, ensure ‘USB debugging’ is enabled, then enable ‘Bug report shortcut’. To take bug report, hold the power button and select the ‘Take bug report’ option.
Android bug report
After reproducing the issue, press the volume up, volume down, and power button simultaneously. This will capture a bug report on your device in the “bug reports” directory. Attach the bug report file to this issue.
Alternate method:
After reproducing the issue, navigate to developer settings, ensure ‘USB debugging’ is enabled, then enable ‘Bug report shortcut’. To take bug report, hold the power button and select the ‘Take bug report’ option.
am...@gmail.com <am...@gmail.com> #6
Attaching the bug report.
sa...@google.com <sa...@google.com> #7
Thank you for reporting this issue. We have shared this with our product and engineering team and will update this issue with more information as it becomes available.
nd...@gmail.com <nd...@gmail.com> #8
Is there any update? I would be great if you can provide more information about this issue. It's getting worse every day and I cannot find any fix.
Thanks
Thanks
Description
Android N comes with a feature to change system "Display Size" from Accessibility Settings, in addition to the previously present feature of changing "Font Size".
If an app has "android.permission.WRITE_SETTINGS" permission to change the settings programatically, one can modify the system font size programatically like:
float scale = (float) 2.0;
Settings.System.putFloat(context.getContentResolver(), Settings.System.FONT_SCALE, scale);
Request:
In same way, can there be another convenience function in
Settings.System.putFloat(context.getContentResolver(), Settings.System.DISPLAY_SIZE_SCALE, scale);