我试图构建我的应用程序,但我收到此错误: 意外的文件结束。我已经尝试过搞清楚自己,但我找不到错。欢迎帮助:)
代码:
<?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:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
tools:layout_editor_absoluteY="81dp">
<ImageView
android:id="@+id/imageView"
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@drawable/bg"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<ImageView
android:id="@+id/imageView2"
android:layout_width="200dp"
android:layout_height="0dp"
android:layout_marginBottom="438dp"
android:layout_marginLeft="100dp"
android:clickable="true"
android:background="@drawable/logo"
app:layout_constraintBottom_toTopOf="@+id/navigation"
app:layout_constraintStart_toStartOf="@+id/imageView"
app:layout_constraintTop_toTopOf="parent" />
<android.support.design.widget.BottomNavigationView
android:id="@+id/navigation"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:background="?android:attr/windowBackground"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/imageView2"
app:menu="@menu/navigation" />
任何好的工具/网站,看看我做错了什么?
答案 0 :(得分:1)
显然,您的android.support.constraint.ConstraintLayout
未关闭
因此,将此行添加到最后应解决您的问题:
</android.support.constraint.ConstraintLayout>
答案 1 :(得分:0)
记住! 只有当您忘记关闭打开的标签或添加额外的角支架时,才会出现这类问题! &安培;类似的东西!在发布之前一定要检查所有这些东西!
这里你在文件末尾错过了这个......
</android.support.constraint.ConstraintLayout>