0
votes

The user interface of my application works fine in normal screens(470dp*320dp) but in case of small screens(426dp*320dp) various issues are popping up.
I have added supports-screens tag to the Manifest file, made separate layout directory(layout, layout-normal, layout-small) for the various screen resolutions, but the problem still persists.

Any ideas?

1
You really need to add details -- the actual "various issues" and what you've tried (in code) so far to resolve them.belwood
What kind of issues are popping up? Can you add some screen shots?Suragch

1 Answers

0
votes

Try to use different layout files for different resolutions with same name like layout-ldpi, layout-mdpi, layout-hdpi, layout-xhdpi, layout-xxhdpi and design according to the resolution. Android OS makes the choice of selecting the res file from respective folder.

Hope it helps