我在布局文件夹下有一个 login.xml 文件;我创建了一个 layout-land 文件夹,它出现在 layout 的正下方,其中也包含一个 login.xml 文件。在我的 Login.java 文件中,我可以访问 R.layout.loging,但无法访问 R.layout-land.login。我已经阅读了将近两个小时,但没有运气。这是我到目前为止所做的:
- 右键单击项目名称并选择“新建->其他-> Android XML布局文件”,然后单击下一步
- “login.xml”作为文件名,“LinearLayout”作为根元素,然后单击下一步
- 单击方向并将其向右移动并选择景观 -> 它显示 /res/layout-land 作为文件夹名称。我单击完成文件夹土地布局出现在文件夹名称布局下方,并出现以下消息:
- 我去项目并清理它
- 我去了 Build Path -> Order and Eport 并确保检查了 Android 4.2.2
- 我再次确保文件夹名称和/或xml文件名中没有大写或空格
- 我没有运气再次构建项目。
- 在构建路径中,我将 gen 文件夹移动到 scr 上方。我关闭项目存在eclipse。重新打开eclipse并重建项目
- 我检查并没有导入 Android.R.*
但没有运气
我的错误信息
[2013-05-29 21:01:46 - Students] 'Landscape Orientation' is not a best match for any device/locale combination.
[2013-05-29 21:01:46 - Students] Displaying it with ', , Locale Language ___Region __,
, sw320dp, w533dp, h320dp, Normal Screen, Long screen aspect ratio, Landscape Orientation,
Normal, Day time, High Density, Finger-based touchscreen, Soft keyboard, No keyboard,
Hidden navigation, No navigation, Screen resolution 800x480, API Level 17' which is
compatible, but will actually be displayed with another more specific version of the
layout.
以下是我的代码:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
int result = this.getResources().getConfiguration().orientation;
if(result == 1)
{
setContentView(R.layout.login);
} else
{
setContentView(R.layout-land.login //Issue here.
}
InitializeVariables();
}
我真的很感激任何帮助/建议。