错误:(1)解析XML时出错:XML声明中指定的编码不正确。怎么了?

时间:2017-07-14 13:19:33

标签: android xml encoding utf-8

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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="com.molitveniseznamkackrko.MainActivity">

    <WebView
        android:id="@+id/webview"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        tools:layout_editor_absoluteX="8dp"
        tools:layout_editor_absoluteY="8dp" />
</RelativeLayout>

这是代码。错误指向第一行。如果我使用utf-16,那么应用程序在模拟器中运行,但我无法构建apk文件(错误:(1)错误:utf-16:不使用UTF-8作为文件编码。这可能导致微妙带有非ascii字符的错误[EnforceUTF8])。我做错了什么?

1 个答案:

答案 0 :(得分:1)

我找到了解决方案。我复制了所有execpt <?xml version="1.0" encoding="utf-8"?>并创建了新的布局文件并将其粘贴到那里。它现在有效。仍然不知道什么是问题,但这并不重要。