我刚刚安装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"
我已经尝试寻找这个问题的解决方案,但无法得到正确的答案。请任何人帮助解决此错误。谢谢你。