If we want to convert our existing android applications developed in 240 density (1024x600) to 320 (1024x600) density, do I need 开发者_如何转开发to change the entire Layout UI files of the current application or do we have any other alternatives. Can we apply 320 density programetically to the current 240 density application?
No just change any bitmaps to have an xhdpi form. The whole point of density changes is that the layout doesn't change, because everything is scaled with the density. That is why you use "dp" units in your layout.
精彩评论