[Q] Xperia M Screen PPI - Sony Xperia M

Hi Friends,
I had Xperia U previously and I was able to change PPI value using Build Prop Editor. I want to know how to change PPI value of Xperia M's screen because I don't see screen ppi property in build prop file. Is it okay to add new ppi property to build prop and will it be okay to do so? ie will it give more brightness?
Please guide.. Thanks in advance...

Related

set up iso value

Hi,i'd like to know if there is a way to set up manually iso values of arc camera
Thank you

Can't adjust resolution, please help

Hello everyone,
I am trying to use an app to adjust the resolution (or DPI) to simulate a 720p screen. However, my phone simply will not change its resolution no matter what I do. I have used the app "LCD Resolution" as well as another similar app. What I have done is to change the dpi setting in the app from 240 to 160. Then I click apply and it says I need to reboot. After reboot however, the setting has been reset to 240 again.
Can anyone tell me how to simulate a 720p screen on the Epic 4g Touch? I am using the CyanogenMod alpha 4 and I want to get as close to the experience of a Galaxy Nexus or Galaxy S3 as possible.
Could someone please help me?
Thanks so much.
Try Rom Toolbox in the market, I believe that's what most people here are using. Should be under build.prop tweaks set it to 160 and reboot.
https://play.google.com/store/apps/...wxLDMsImNvbS5qcnVtbXkubGliZXJ0eS50b29sYm94Il0.
If you have the root explorer app you can go to the build.prop located in system yourself and change the lcd density value yourself (you have to scroll down a bit). Make sure you mount as Read/Write so you actually change it instead of just viewing it.
Also a side note, you're not changing the resolution, only the density of the pixels packed. The resolution can't be changed on this device, nor any of the current Android devices for that matter.
The only one that worked for me was lcd resolution (root), by wemobs labs. I tried a few others, but they didn't change anything.
Sent from my Galaxy Nexus using XDA

[MOD] Change Default Resolution to 1080P (No root required)

hi
this guide shows how to change the default display resolution on the htc10 (should work on other devices too).
this affects all the apps too of course. the changes are applied in runtime so you can check the effect directly.
some system apps like keyboards might require a soft-reboot (restart systemui) for changes to apply.
the way sony is dealing with 4k displays and the way samsung allows this in settings inspired me to write this guide.
root-access is not needed for this. only enabling usb-debugging in developer settings is needed.
the goal of this guide is to reduce battery consumption by reducing the amount of virtual pixels being diplayed.
warning: i can not be held responsible for any damage this mod might cause to your device or data. on your own risk.
guides how to enable developer options and adb debugging can easily be found on xda.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
requirements:
htc 10 device
a computer with adb folder
connected usb-cable
note:
htc boost app is interfering with this mod.
i recommend to disable all foreground app optimizations in htc boost app.
otherwise, all the apps interface will be too small when reducing screen resolution.
note2:
in android 7 nougat, google added the display-option to reduce display size in addition to fontsize.
this option is also directly interfering with this mod since it represents the wm override density value (see below).
value descriptions:
wm size - physical size: 1440x2560 (that's our native display resolution)
wm size - override size: value is not present in stock rom (android ui is running with physical display resolution)
wm density - physical density: 640 (that's our native virtual display density)
wm density - override density: value is not present until you change display size in settings (640 is used)
when changing display size in settings to "small", override density value is 544.
when changing display size in settings to "big", override density value is 720.
lineage os 14.1 has more options for override display density value: 448/512/576/640/720 (as reference).
the default android density values are: 240(HDPI)/280/320/360(XHDPI)/400/440/480(XXHDPI)/520/560/600/640(XXXHDPI)/680/720)
wm density things change, when changing wm size.
overriding physical density value is reducing the size of all elements on screen,
maybe changes the grid size on homescreen (launcher) and it might add additional options for rows/columns in appdrawer.
some comparisons with other devices values:
htc one m7/m8 (4.7/5inch, 1080p)
wm size - physical size: 1080x1920
wm density - physical density: 480
htc one max (6inch, 1080p)
wm size - physical size: 1080x1920
wm density - physical density: 400
htc u11 (5.5inch, 1440p)
wm size - physical size: 1440x2560
wm density - physical density: 640
nokia 8 (5.3inch, 1440p)
wm size - physical size: 1440x2560
wm density - physical density: 560
google pixel (5inch, 1080p)
wm size - physical size: 1080x1920
wm density - physical density: 420
google pixel XL (5.5inch, 1440p)
wm size - physical size: 1440x2560
wm density - physical density: 560
xperia xz premium (5.5inch, 2160P/4K)
wm size - physical size: 1080x1920
wm density - physical density: 403
note: see how they deal with 2160x3840 display? phone is running only 1080p exept in specific apps.
that's what we want too to save battery.
downside is that we can't use full-res of display anywhere anymore (exept for VR, 1080P should be sufficient though).
first we want to override the physical display size from 1440x2560 to 1080x1920.
the adb command to do so is: "wm size 1080x1920"
second we want to override the display density value from 640 to 480 (i would even recommend 420 or 400).
the adb command to do so is: "wm density 400"
feel free to experiment with this density value and post your results.
when going lower than value of 436, sense launcher changes from 4x4 to 5x5 grid-layout (when 1080p is set as res).
when going lower than value of 370, htc sense keyboard (sense 7) switches to small mode (when 1080p is set as res).
when going lower than value of 289, systemui switches to tablet mode (when 1080p is set as res).
known issues:
-htc bootsplash of the htc10 is made in 1440x2560 so the logo is shifted to the lower right (who cares)
-signal bars are crippled
-navigation bar sometimes shows wrong button-orientation with custom density values
-some apps might show ui scaling problems with custom density values
-htc lockscreen pin entry screen breaks when density value is too low (use aosp lockscreen as alternative)
return both values to default with the following commands:
wm size reset
wm density reset
if you just want to make items smaller but running at native display res (no battery optimization):
wm size - physical size: 1440x2560 (leave this value as it is or revert it with the command above)
wm density: try the override values mentioned above and see how it behaves.
when going lower than value of 581, sense launcher changes from 4x4 to 5x5 grid-layout (when 1440p is set as res).
when going lower than value of 490, htc sense keyboard (sense 7) switches to small mode (when 1440p is set as res).
when going lower than value of 385, systemui switches to tablet mode (when 1440p is set as res).
please report back about problems or battery consumption improvements.
hit the thanks button if you like this guide.
Does density effect power consumption when size is set to 1080x1920?
I set it to 420. Lower or higher,are there any differences?
Edit : What is the perfect match for the 1440x2560 size 544 density in 1080x1920 size?
density should not affect battery consumption. only the virtual display resolution.
the calculated values are:
1440x2560->544(small)/640(default)/720(big)
1080x1920->408(small)/480(default)/540(big)
i will have a closer look at how samsung does it on the s8. there is also a setting for only hd resolution.
HD2Owner said:
density should not affect battery consumption. only the virtual display resolution.
the calculated values are:
1440x2560->544(small)/640(default)/720(big)
1080x1920->408(small)/480(default)/540(big)
i will have a closer look at how samsung does it on the s8. there is also a setting for only hd resolution.
Click to expand...
Click to collapse
What do you mean by "a setting for only HD resolution"?
ordeniz said:
What do you mean by "a setting for only HD resolution"?
Click to expand...
Click to collapse
i just added another image in the first post to explain it.
Thanks a lot for your efforts.
HD2Owner said:
density should not affect battery consumption. only the virtual display resolution.
the calculated values are:
1440x2560->544(small)/640(default)/720(big)
1080x1920->408(small)/480(default)/540(big)
Hello,
i will have a closer look at how samsung does it on the s8. there is also a setting for only hd resolution.
Click to expand...
Click to collapse
Did you try it? and if so did you notice a change in battery life?
Thank you.
nice tutorial
for htc 10 i did
1080x1920 res. and 402 dens fits perfect!
thanks for tutorial OP
Any noticeable effect on battery life?
derdjango said:
Any noticeable effect on battery life?
Click to expand...
Click to collapse
still under observtion . will share here the results soon
almost nothing changed, i will do much more technical experiments
This method is work on HTC U11.
Thank you.
newyesor said:
This method is work on HTC U11.
Thank you.
Click to expand...
Click to collapse
Does this technique improve U11 battery usage?
Thx
I use Viper10 5.11.0 for HTC 10. Current resolution is 720x1280 with DPI 272. It is running ultra smooth and perfect. Only problem is the last apps screen previews does not fit the window. It is like %400 zoomed.
anyone still doing this? Does setting to 1080*1920 with 480ppi improve battery life?
Nooe, it doesn't
Sent from my HTC 10 using XDA-Developers Legacy app
NitroMehmet said:
I use Viper10 5.11.0 for HTC 10. Current resolution is 720x1280 with DPI 272. It is running ultra smooth and perfect. Only problem is the last apps screen previews does not fit the window. It is like %400 zoomed.
Click to expand...
Click to collapse
Is 720p quality acceptable in htc10 screen?
andywkf said:
Is 720p quality acceptable in htc10 screen?
Click to expand...
Click to collapse
Nope. Some apps have some troubles. I revert the settings to original and just using the HTC Boost+ app to run apps in 1080p. I can't see any difference between 1080p and 2K about the battery life.
1440p vs 1080p
Hello guys. First of all, great thanks to HD2Owner, who made this feature(we better say MOD) possible.
Recorded my results firstly with 1440p(native), I have stock ROM, kernel and bootloader. Tried to do almost the same scenario.
2 results from 1440p:
4h 30m
5h 17m
Then i switched resolution to 1080p, Open Apps zooms automatically(looks strange, the same as above in some pictures), boot logo does not show up to all screen and lots of these kind of insignificant bugs.
2 results from 1080p and scenario:
4h 41m
4h 40m
So, I guess you cannot say that there is a difference in battery life for sure. But I noticed that small fonts become a little bit shrunken, if I can use this word, less crisper. When you read or browse websites, you definitely notice it.
Nevertheless, HD2Owner, thank you for this making this experiment and experience possible and I will go back to 1440p.
For gamers this trick is godly ! I use 1280x720 resolution and 280 dpi and it is great for gaming performance! My HTC 10 is now lightning fast ,
I also read that , 720 resolution scales pixel by pixel on the screen because 1280x720 x4 pixels is exactly 2560x1440 ,but 1080p 1440p is 1.777x so it does not scale pixel by pixel.

Change resolution to 1920x1080 problem

Hi guys,
I changed the resolution of my phone to 1920x1080 to test if it has any impact on performance or maybe even battery life.
I went to terminal and did the following:
su
wm size 1080x1920 && wm density 480
Now the resolution is set to 1920x1080, but the hardware keys (home back and the other one) stopped working.
When I change the resolution back to 1440x2560 the hardware keys start working again.
Anyone know how to make the hardware keys work again on 1080x1920?
Already tried in buildprop qemu.hw.mainkeys 1 but that didn't work.

How to change screen display resolution .

Steps :
1. Download any terminal emulator .
(you'll need root permissions)
2. on command prompt type following commands :
# su
# wm density 320
# wm size 720x1280
( After each command press enter )
Note : you can change software density ( display size / smallest width ) from settings . Set it according to your preference . ( Second command set default . )
For hd use density 320 size 720x1280 .
For full-hd use density 443 size 1080x1920 .
For quad-hd use density 548 size 1440x2560 .
how does this work, where will the excess pixels go if our screen is 1080p?
and what are the benefits?
AgentNemo said:
how does this work, where will the excess pixels go if our screen is 1080p?
and what are the benefits?
Click to expand...
Click to collapse
It cant change your display lcd ppi as it is hardware default , but it changes the display resolution like we do for dpi in settings .
Only a tweak . But this will show your display resolution changed in system diagnosis. ( DPI )
Screens
Do you notice any difference from FullHD to Quad-HD? Does the image quality look better?
CaiqueRSoares said:
Do you notice any difference from FullHD to Quad-HD? Does the image quality look better?
Click to expand...
Click to collapse
It is difficult to observe , but yes , slightly . But at d same time , load on cpu increased a bit , smoothness of ROM affected .
Switching to HD smoothened ROM a bit but at d cost of image quality .
Anyone must try
8k resolution ??
7840×4320
thanks ! I've been trying for ages to use 720p resolution on this phone to improve battery life and no app on play store was working fine. Even if picture is not as crispy, it is okay enough for every day use.
There is an easier way to do the same modification.
Download Easy DPI Changer, through Play Store.

Categories

Resources