Почему вот в этом макете, в котором находится разметка с несколькими элементами и отдельный текст высвечивается ошибка Error in an XML file: aborting build.:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="
http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@drawable/bg_menu"
android:id="@+id/menu_layout">
<TextView
android:layout_width="match_parent"
android:layout_height="90dp"
android:layout_gravity="center"
android:gravity="center"
android:text="Простой симулятор самолета"
android:textSize="26dp"
/>
<Button
android:id="@+id/menu_button1"
android:layout_width="250dp"
android:layout_height="60dp"
android:layout_gravity="center"
android:text="Игра"
android:textSize="25dp"
android:alpha="1"
/>
<Button
android:id="@+id/menu_button2"
android:layout_width="250dp"
android:layout_height="60dp"
android:layout_gravity="center"
android:text="Помощь"
android:textSize="25dp"
android:alpha="1"
/>
</LinearLayout>
<TextView
android:id="@+id/menu_help"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
android:gravity="center"
android:text="Вы-пилот самолета, поднимитесь с одного аэропорта до другого. Разработка: Сергей Самоделкин(
http://samodroid.webnode.ru),2014 год."
android:textSize="25dp"
/>