我的Android工作室存在问题。有时它可以工作,但是当它没有时,它通常会出现这个错误:
我该怎么做才能解决问题?
这是我的代码:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.wordpress.schoolworkhelpsite.swhsapp.MainActivity">
<image>ic.launcher.png</image>
<TextView
android:layout_width="wrap_content"
android:layout_height="23dp"
android:text="SchoolWork HelpSite"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>
<xml>
如果我的代码错了,我需要更改什么?
答案 0 :(得分:0)
Android Studio应该立即告诉您代码有什么问题。如果没有在设置中查找Lint并检查每个相关选项。
<image>ic.launcher.png</image>
AS说
此处不允许元素图片
如果您想使用图片,请使用ImageView
:
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:srcCompat="@mipmap/ic_launcher" />
<xml>
AS说:
多个根标签
为什么要打开另一个根标签?关闭</xml>
也不正确,你从哪里得到这个想法?您只需要关闭根标记,在这种情况下是ConstraintLayout,您的代码就可以了。只需删除<xml>
行。
答案 1 :(得分:-1)
错误1:希望屏幕设计没有任何错误,因此更改预览调色板中的设备和API版本,您将获得预览。
错误2:分享您在“消息”选项卡中显示的错误。所以我会为你提供整改