I need to display three same size images (200 X 100) side by side (no gaps) on top of the screen. They should occupy entire width of the screen and preserve aspect ratio.
Is it possible to accomplish that using only layout xml file, or I need to use java code?
Solution shoud be resolution independant... Can anybody post a solution or link for this (or similar) problem? Thanks!
|
|
|||
|
|
Got it working! But as I said above, you need to create your own class. But it is pretty small. I created it with the help of this Bob Lee's answer in this post: Android: How to stretch an image to the screen width while maintaining aspect ratio?
Now to use it in the XML:
Have fun! ===================================== Found another way to do the same only in XML by using android:adjustViewBounds="true". Here an example:
|
|||||||||||||||||||||
|
|
Only a minor upgrade to take into account what could possible go wrong: null Drawable or 0 width.
|
||||
|
I don't know about XML layouts and the android API, but the math is simple; find the width of the screen and divide by three. That's the width of each image. Now multiply the width by the original image's ratio of Height to Width. That's the height of each image.
|
||||
|
|