Android Studio不支持。我想创建一个布局新手机,如Galaxy S4。我有一个要测试,尺寸太小。但android studio编译器会出错,因为正斜杠正在出现。我试过layout-xxlarge,它也给出了错误。
android-apt-compiler: [xxxxxxxxxx] invalid resource directory name:
C:\用户\ XXXXXXXXXXXXXX \收存箱\ android_studio_workspace \ xxxxxxxxxxxxxxxxx \ RES /布局xxlarge
Eclipse上是否支持这些布局?
答案 0 :(得分:2)
正如您可以看到here,“为Android 3.2声明平板电脑布局”部分:
适用于运行Android 3.0的第一代平板电脑 声明平板电脑布局的方法是将它们放在一个目录中 xlarge配置限定符(例如,res / layout-xlarge /)。在 以适应其他类型的平板电脑和屏幕尺寸 特别是,7英寸平板电脑-Android 3.2引入了一种新的指定方式 更多离散屏幕尺寸的资源。新技术的基础 在您的布局需要的空间量(例如600dp的宽度), 而不是试图使您的布局适合广义大小组 (例如大或xlarge)。
你能得到的最好的是:
res/layout-xlarge-land/my_layout.xml // layout for extra large in landscape orientation
您需要的是here。