Quote:
Originally Posted by nqk
Thanks Chaley,
1) "Authors" is missing in Index of Cloud Library.
|
Fixed in next beta.
Sometimes I think my brain has deteriorated too much to continue developing.
Quote:
2) (FYI only) If you change device dpi, pop-up dialogues are broken, texts flow outside.
|
I tried changing the density on my N7 2012 using the ADB method. All sorts of things in many apps broke. Edges of dialogs no longer line up, some text sizes don't change, etc. In CC dialogs tended to mostly work but the layout of text boxes was wrong, extending slightly beyond the containing layout on both sides. Dialogs no longer use the entire width, instead using the amount specified by new density/old density.
My guess is that things are going on inside Android that use values other than density. For example, here are the density values before I changed it:
Code:
Density information:
density=1.3312501
width=800
height=1205,
scaledDensity=1.3312501,
xdpi=213.0,
ydpi=213.0
densityDPI=213
Here are the values after I changed it to 150
Code:
Density information:
density=0.9375,
width=800,
height=1227,
scaledDensity=0.9375,
xdpi=213.0,
ydpi=213.0
densityDPI=150
Note that the xdpi and ydpi values did not change, although they probably should have.
Thank you. I hope the same for you.