При перестройке проекта я получаю сообщение об ошибке, подобное этому
AGPBI: {"kind":"error","text":"error: attribute layout_constraintBottom_totopOf (aka com.example.seve:layout_constraintBottom_totopOf) not found.","sources":[{"file":"C:\\Users\\hack1\\IntelliJIDEAProjects\\Seve\\app\\src\\main\\res\\layout\\layout_screen.xml","position":{"startLine":10}}],"original":"","tool":"AAPT"}
Я перешел на layout_screen.xml
и не нашел ничего полезного в строке 10 файла xml. Если бы кто-нибудь мог помочь мне, что на самом деле означает "startLine":10
. Это было бы очень полезно.
Вот мой layout_screen.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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:background="#fff"
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.constraintlayout.widget.Guideline android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/guideline"
app:layout_constraintGuide_begin="392dp"
android:orientation="horizontal"/>
<TextView
android:text="TextView"
android:textSize="32sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_totopOf="@+id/guideline"
app:layout_constraintTop_toTopOf="@+id/guideline"
android:id="@+id/intro_title"
app:layout_constraintStart_toStartOf="parent"
android:layout_marginLeft="16dp"
android:layout_marginStart="16dp"
app:layout_constraintEnd_toEndOf="parent"
android:layout_marginEnd="16dp"
android:layout_marginRight="16dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintVertical_bias="0.049"
app:layout_constraintHorizontal_bias="0.497"/>
<TextView
android:text="TextView"
android:lineSpacingExtra="16dp"
android:textAlignment="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/intro_description"
android:layout_marginTop="8dp"
app:layout_constraintTop_toBottomOf="@+id/intro_title"
app:layout_constraintEnd_toEndOf="parent"
android:layout_marginEnd="32dp"
android:layout_marginRight="32dp"
app:layout_constraintStart_toStartOf="parent"
android:layout_marginLeft="32dp"
android:layout_marginStart="32dp"
android:layout_marginBottom="8dp"
app:layout_constraintBottom_toBottomOf="parent"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
tools:srcCompat="@tools:sample/avatars[5]"
android:id="@+id/intro_img"
app:layout_constraintStart_toStartOf="parent"
android:layout_marginLeft="8dp"
android:layout_marginStart="8dp"
app:layout_constraintEnd_toEndOf="parent"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:layout_marginBottom="32dp"
app:layout_constraintBottom_toTopOf="@+id/intro_title"/>
</androidx.constraintlayout.widget.ConstraintLayout>
Я ожидаю, что проект будет успешно построен, но яне удалось найти ошибку в строке 10 или, возможно, я смотрю не в ту строку.