Hi,
In android, there are different sub-directory under 'res' * layout * layout-finger * layout-land-finger
Can you please explain what are the difference between these directories?
Thank you.
Hi,
In android, there are different sub-directory under 'res' * layout * layout-finger * layout-land-finger
Can you please explain what are the difference between these directories?
Thank you.
The official explanation is in the SDK documentation. Assuming that these three are the only layout resource directories:
res/layout-land-finger/
will be used if the device has a finger-friendly touchscreen (i.e., capacitive, versus a resistive touchscreen or no touchscreen) and is being held in landscape orientation.res/layout-finger/
will be used if the device has a finger-friendly touchscreen and is not being held in landscape orientation.res/layout/
will be used if the device has a resistive or no touchscreen