0

I have divided my layout resources in Android project to many folders such asL layout, layout-large, layout-normal-port-xhdpi-800x480, and so on.

The problem is when I click on xml file inside the (layout) folder which is the default folder it always opens in landscape; I tried to switch to portrait but it opens the xml file inside (layout-normal-port-xhdpi-800x480) folder.

How can I view the default layout as a portrait not landscape?

Appreciate your help.

Amt87
  • 5,493
  • 4
  • 32
  • 52

1 Answers1

0

I would suggest using the new layout qualifiers.

See here: Support Multiple Screens

layout-sw600dp (7Inch Tablets)
layout-sw720dp (10Inch Tablets)
etc.

They're all listed there.

Siddhesh
  • 1,370
  • 11
  • 28
RED_
  • 2,997
  • 4
  • 40
  • 59