Responsive design for Android application [closed]

-4

Someone can point me some material (books, websites, ...), about responsive android design.

    
asked by anonymous 16.04.2014 / 22:38

1 answer

2

Boy, I think you're missing out on the basics of Android programming. Responsive is a term commonly used for building websites and webapps, for when it adapts to different screen sizes.

In mobile programming, using the SDK, to run an application on different screen sizes, there is the application layout configuration for each resolution that you want the app to work on.

I do not know what your English is like, but this is a good article link

For this screen adaptation really is not a lot of code, we usually mount the screen through an * .xml inside the layout folder and let's select the images and used elements that it will use.

Each folder has an indication of the screen resolution that is intended. Example:

layout-hdpi layout-xhdpi

drawable-hdpi drawable-xhdpi

...

I hope I can help with something!

    
16.04.2014 / 23:23