3

我刚刚安装android studio在我的计算机上,并尝试使用选择的默认选项创建一个新应用程序。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".MainActivity">

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/hello_world" />

</RelativeLayout>

以上是在我的文件中自动生成的代码,main.xml但我得到的错误是

URI is not registered ( Setting | Project Settings | Schemas and DTDs )

在以下 2 行

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

我已经尝试寻找这个问题的解决方案,但无法得到正确的答案。请任何人帮助解决此错误。谢谢你。

4

2 回答 2

0

此问题已通过将 更新Android Studio到最新可用版本来解决。谢谢。

于 2013-12-20T09:58:59.190 回答
-1

只需清除临时文件

  1. CTRL+ R(运行命令)

  2. 键入并输入%temp%

  3. 删除所有文件

  4. 重启安卓工作室。

而已 !

于 2016-07-13T10:02:20.933 回答