因此,我无法执行该项目。现在,我尝试了以下在此处看到的技术: - 重建并清理项目 -Restarted Android Studio - 处理新项目并读取文件,在添加每个主要文件后运行项目。
现在,第三个问题为我提供了一些线索。当我添加片段并放入一些代码并运行项目时,我得到以下2个错误:
错误:(1)解析XML时出错:XML声明格式不正确
错误:任务':app:processDebugResources'执行失败。
com.android.ide.common.process.ProcessException:org.gradle.process.internal.ExecException:进程'命令' C:\ Users \ Temp \ AppData \ Local \ Android \ sdk \构建工具\ 22.0.1 \ aapt.exe''完成非零退出值1
当我打开gradle控制台时,我看到了以下内容:
失败:构建因异常而失败。
出了什么问题: 任务':app:processDebugResources'。
的执行失败com.android.ide.common.process.ProcessException:org.gradle.process.internal.ExecException:进程'命令' C:\ Users \ Temp \ AppData \ Local \ Android \ sdk \构建工具\ 22.0.1 \ aapt.exe''完成非零退出值1
尝试: 使用--stacktrace选项运行以获取堆栈跟踪。使用--info或--debug选项运行以获得更多日志输出。
我是初学程序员,所以我不确定该怎么做。
任何帮助将不胜感激。我附上了下面的fragment.xlm中的代码:
<?xml verion="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">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:id="@+id/textTitle"
android:text="" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=""
android:id="@+id/textDescription" />
</LinearLayout>
答案 0 :(得分:3)
“解析XML时出错:XML声明格式不正确”表示编译XML文件时出现问题,例如错误的命名空间,额外/杂散字符,关闭或打开标记丢失或放错地方或其他拼写错误错误。
在你的情况下,第一行有拼写错误。
<?xml verion="1.0" encoding="UTF-8"?>
应该是:
<?xml version="1.0" encoding="UTF-8"?>