Я недавно изучаю разработку приложений в android студии, и у меня нет большого опыта в java, когда я изучал верстку, я столкнулся с ошибкой, указывающей на ошибку множественного тега root, вот code
<?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:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello Carl!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width ="fill_parent"
android:layout_height ="fill_parent"
android:orientation= "vertical">
<Button android:id ="@+id/btnStart"
android:layout_width ="270dp"
android:layout_height= "wrap_content"
android:text ="@+string/Start" />
</LinearLayout>
Как я могу решить эту проблему, и, пожалуйста, укажите, следует ли мне использовать только один тип макета одновременно?