Skip to main content

Posts

Showing posts with the label Screen sizes

Deal with different screen sizes in android

Deal with different screen sizes Android having capability to deal with different device screen size but we have to follow below rules for that 1) Ensure your layout can be adequately resized to fit the screen. 2) Providing appropriate UI layout according to screen configuration. 3) Ensuring the correct layout is applied to the correct screen. 4) Providing bitmaps that’s scale correctly. ü   Use wrap content and match parent for flexible and adapts to different screen sizes. By using wrap content and match parent we can achieve adaptive UI for multiple devices instead of hard coded values. ü   Use relative layout, which is allows you to specify in terms of the special relation between components. ü   Use size qualifiers, relative, adaptive & stretch UI is not enough in android in some cases we need to show different UI for different screen sizes like device require single pane and tablet require double pane UI in that case we have use for device is layout ...