How do I Update layouts for long and notlong resource qualifiers?
I noticed that although my drawable resources are being scaled down properly by android, the bottom of the layouts are getting chopped off on smaller screens(I assume notlong screens, as my testing device is a Droid which I believe is long, 开发者_如何学Goright?)
Should I be updating the layout files and putting them in a res/layout-notlong folder or something like that? Or should Android be handling this differently?
You rarely need to use -long and -notlong. You should be designing your layouts with layout managers that resize themselves to adjust to the screen size.
精彩评论