What is the standard / best way to determine the size of elements in Android layout files to account for Android devices with all types of screens?
For example: I used LinearLayout to organize several child elements (TextViews, Buttons) one by one horizontally or vertically for a ListView. However, on a smaller device, I might want to scale the elements down or compress some elements, but save the rest.
I would be grateful for the input. Thanks
source
share