当我编译此文件时,我收到以下错误错误:解析 XML 时出错:格式不正确(无效令牌)R 无法解析为变量
这是android xml文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="@drawable/ic_launcher"
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="this is main text"
android:gravity="center"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/title"
/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Tutorials"
android:textSize="25px"
android:textStyle="bold" />
/>