我从昨天开始学习Android Studio。我尝试回显简单的“ Hello World”:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
android:id="@+id/activity_main"
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="16dp"
android:paddingRight="16dp"
android:paddingTop="16dp"
android:paddingBottom="16dp"
tools:context=".MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!" />
</RelativeLayout>
但是,当我单击“设计”视图时,是否显示此错误?
在成功构建之前,无法使用设计编辑器
我该如何解决此错误。我昨天刚下载了Android Studio。
我只是注意到我的xml代码引起了错误。这就是为什么这可能行不通的原因。非常感谢