I am gonna develop project in android 2.0,for that i ll be using images etc..it may be deployed in any android devices. should i use different image size of same image for different devices..what开发者_运维问答 is the procedure
Again, depending what these images are used for, you may want to use 9-patch png files. Also have a look at Supporting Multiple Screens topic at Android DevGuide
For best quality, use different size images for all devices.
Another way is to scale down images to whatever the size the device is using. If you are doing this on the device, it might take a lot of time, or there may be scaling artifacts.
Yet another way is to not use bitmap images, rather one kind or another of vector based graphics.
精彩评论