Fixed
Status Update
Comments
na...@gmail.com <na...@gmail.com> #2
If it works fine in the emulator then it's a Nexus bug. Officially this website only supports AOSP builds, not nexus builds, so you should contact support.google.com/nexus and raise this there. Unofficially, someone like JBQ may spot this and pass the issue over to someone who might be able to do something with it. But I can't guarantee that will happen, or when.
sj...@gmail.com <sj...@gmail.com> #3
Agree with comment #1 - this may or may not be fixable in AOSP, it's hard to tell, and it should also be reported to Google as the issue might be in their variant of the camera code. I'm still keeping this open.
This report applies to a Nexus device, and the issue tracker where you reported it specializes in issues within the Open Source source code of the Android platform.
We are not able to provide support for Nexus devices in this issue tracker. Please use the Google Support site for Nexus help athttp://support.google.com/nexus/ or report this issue in the Google Mobile Help Forum at https://productforums.google.com/forum/#!forum/mobile/
This report applies to a Nexus device, and the issue tracker where you reported it specializes in issues within the Open Source source code of the Android platform.
We are not able to provide support for Nexus devices in this issue tracker. Please use the Google Support site for Nexus help at
sj...@gmail.com <sj...@gmail.com> #4
I am also facing this issue. please help me if you got any solution or any alternate way to capture video with nexus 7 os 4.3
rp...@google.com <rp...@google.com> #5
iam also facing this issue with adobe phonegap (android 4.3)
sa...@gmail.com <sa...@gmail.com> #7
Hi,
I came here viahttps://issues.apache.org/jira/browse/CB-4471 and just wanted to note that I'm experiencing the same problem in the Galaxy Nexus (also on Android 4.3) while using PhoneGap/Cordova.
Since I don't know if anyone of you has, I reported this problem in the Mobile Help Forums now:https://productforums.google.com/d/msg/mobile/hGKSYdS1C30/1jh8tgHBBfQJ
We'll see if that leads to anything...
The Nexus support site doesn't even list my phone anymore and online has a customer service number which probably isn't very helpful when trying to report bugs in their code.
I came here via
Since I don't know if anyone of you has, I reported this problem in the Mobile Help Forums now:
We'll see if that leads to anything...
The Nexus support site doesn't even list my phone anymore and online has a customer service number which probably isn't very helpful when trying to report bugs in their code.
rp...@google.com <rp...@google.com> #8
add Uri originalUri = Uri.fromFile(tempDir);
intent.putExtra(MediaStore.EXTRA_OUTPUT, originalUri);
intent.putExtra(MediaStore.EXTRA_OUTPUT, originalUri);
fo...@gmail.com <fo...@gmail.com> #9
if we add EXTRA_OUTPUT then that breaks for most all older cameras.. What a pain. Can't believe google camera doesn't follow there own sdk. I would expect this of a 3rd party camera but a nexus camera? Come on google read your documentation.
dv...@gmail.com <dv...@gmail.com> #10
data.getAction() should be used instead.
tr...@gmail.com <tr...@gmail.com> #11
None
st...@gmail.com <st...@gmail.com> #12
I still have this problem in android studio 2021.2.1
pi...@gmail.com <pi...@gmail.com> #13
Still had the problem in android studio Chipmunk (2021.2.1 Patch 2)
I found a work around that works for me on my dell g15 laptop, what you do is
Close Android studio
Go into your settings -> System -> Display settings
Select your main monitor -> Scale and layout -> change the scaling from your current to 100%
Open android studio
Change back your scaling to the original one
This should fix temporarily the dpi on android studio
I found a work around that works for me on my dell g15 laptop, what you do is
Close Android studio
Go into your settings -> System -> Display settings
Select your main monitor -> Scale and layout -> change the scaling from your current to 100%
Open android studio
Change back your scaling to the original one
This should fix temporarily the dpi on android studio
lu...@gmail.com <lu...@gmail.com> #14
I am facing the same issue and have found the folowing fix on Windows 11:
1. Go to Android Studio shortcut and open properties
2. On Compatibility tab, click "Run compatibility troubleshooter"
3. Follow the troubleshooter suggestions and, if solved, save program config.
In my case, Windows set the program to run with in High DPI mode or something like that. It's working fine now, even with my main monitor at 125% scaling.
1. Go to Android Studio shortcut and open properties
2. On Compatibility tab, click "Run compatibility troubleshooter"
3. Follow the troubleshooter suggestions and, if solved, save program config.
In my case, Windows set the program to run with in High DPI mode or something like that. It's working fine now, even with my main monitor at 125% scaling.
ga...@gmail.com <ga...@gmail.com> #15
- uses: actions/setup-dotnet@v3
id: stepid
with:
dotnet-version: 3.1.422
- run: echo '${{ steps.stepid.outputs.dotnet-version }}' # outputs 3.1.422
hk...@gmail.com <hk...@gmail.com> #16 Restricted
Restricted
Comment has been deleted.
at...@gmail.com <at...@gmail.com> #17
تنشط
Description
Long story short, to get the best possible experience, applications have to be coded specifically to support this new feature, otherwise blurriness will occur in certain scenarios, as Windows will scale automatically, "The effect is that the window and content size are appropriate for every display, but the scaling introduces blurriness.".
Official doc:
There is a good summary here:
This has 2 implications:
1) Applications need to support DPI setting per top-level window (as opposed to application wide) <= This is required because top level windows of a single application may appear on separate displays, each one with distinct DPI settings.
2) Applications need to be able to apply a new DPI setting to any top level window at run-time, without restarting <= This happens when a window is moved by the user from one display to another display with a different DPI setting.
Implementation notes:
* Supporting this feature means that every top level windows of Android Studio will have it's own DPI (and scaling factor), so relying on a global scaling factor is not an option anymore.
* This also means that the application needs to support dynamically (i.e. at run time) scaling to a different factor all components of a top level window in response to the WM_DPICHANGED message.
* The two points above make the approach currently implementated in the JBUI class obsolete.