无法加载android xml文件

时间:2015-10-03 18:27:12

标签: android eclipse

我已经安装了最新版本的eclipse,ADT和SDK,但是每次我在eclipse(火星版)中启动新的Android应用程序项目时都会出现以下错误。

“无法找到与ID 2130772027相对应的样式。”

我已经尝试过相关的解决方案,例如将API更改为更低版本和更改主题,但它不起作用,因此我可以获得另一种解决方案。enter image description here

鉴于以下是我的XML代码:

xmlns:tools="http://schemas.android.com/tools"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:paddingBottom="@dimen/activity_vertical_margin"

android:paddingLeft="@dimen/activity_horizontal_margin"

android:paddingRight="@dimen/activity_horizontal_margin"

android:paddingTop="@dimen/activity_vertical_margin"

tools:context="com.example.hii.MainActivity" >

<TextView

    android:layout_width="wrap_content"

    android:layout_height="wrap_content"

    android:text="@string/hello_world" />

3 个答案:

答案 0 :(得分:0)

确保您在SDK管理器中具有特定的API级别,如布局窗口中指定的那样。 (API 23)

将android命名空间添加到您的布局

清理项目并运行。

答案 1 :(得分:0)

不再支持Eclipse,请转到android studio。

https://developer.android.com/sdk/installing/migrate.html

答案 2 :(得分:0)

这是由于appcompat_v7 lib存在于您的软件包资源管理器中,您应该使用最低要求的sdk API 14(4.0冰淇淋三明治)创建每个项目。