Reputation: 194
I'm currently designing images in four different dimensions (ldpi,mdpi,hdpi and xhdpi) for an Android application. i know that the different drawable folders are used dependig on the dpi of the devices' screen.
But what is the optimal dpi in photoshop to save the pngs?
Should images for ldpi saved with 120dpi, mdpi with 160dpi and so on?
Upvotes: 2
Views: 1810
Reputation: 2375
Picture's resolution is not important for screen, it's important only for printing.
Upvotes: 0
Reputation: 20041
// check this Link
You might be confused about what PPI (pixels per inch) to set your deliverables at. Just leave them at the standard 72 PPI, and scale the images accordingly.
Upvotes: 0
Reputation: 3936
Refer this,
http://developer.android.com/guide/practices/screens_support.html
According to that,
What I would do is design on a 300dpi cavas. That way there's no loss of quality.
Upvotes: 1