This is a basic android question. I have app which need to have different screen design for a phone and a tablet. The phone needs to have a ListView and the Tablet need to h
You basically need to provide different layout files for different qualifiers.
As a very brief example, xml layout files places in the layout-sw720dp
(or layout-large
for API level < 13) folder will be used for devices more than 720 dips wide (i.e. 10" tablets).
Check Supporting Multiple Screens and Providing Resources in the Android documentation.