Что такое проблема с несколькими тегами Root в Android Studio - PullRequest
1 голос
/ 05 апреля 2020

Я недавно изучаю разработку приложений в 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>

Как я могу решить эту проблему, и, пожалуйста, укажите, следует ли мне использовать только один тип макета одновременно?

1 Ответ

3 голосов
/ 05 апреля 2020

В вашем файле макета XML может быть только один тег root.

Пример:

<androidx.constraintlayout.widget.ConstraintLayout
...your main content...
</androidx.constraintlayout.widget.ConstraintLayout>

Переместите LinearLayout туда, где есть ...your main content...

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...