序言中不允许解决内容

时间:2019-11-16 20:36:52

标签: android

我实际上正在开发一个本机android应用程序,该应用程序会给用户带来很多警报。我不知道为什么今天运行我的应用程序时我发现一个例外:

  

org.xml.sax.SAXParseException; lineNumber:1; columnNumber:1;内容   在序言中是不允许的。

我真的不知道这是否能帮助您找到解决方法,但这是我的清单文件:

 <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.home">
    <uses-permission android:name="android.permission.INTERNET" />

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:hardwareAccelerated="false"
        android:largeHeap="true"
        android:theme="@style/AppTheme">
        <activity
            android:name=".ActivitySplash">


            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".Configuration"
            android:label="@string/app_name" />
        <activity android:name=".MainActivity"/>
        <activity android:name=".Notificationdisplay"></activity>
        <service
            android:name=".NotificationJobService"
            android:permission="android.permission.BIND_JOB_SERVICE" />
    </application>

</manifest>

我的主要活动布局:

   <?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
    android:orientation="horizontal">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">
        <TextView
            android:id="@+id/textView"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:text="N L P"
            android:textSize="35dp"
            app:fontFamily="serif"/>
        <Button
            android:id="@+id/conf"
            style="@style/Widget.AppCompat.Button.Borderless"
            android:layout_width="49dp"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom"
            android:gravity="bottom"
                android:layout_marginLeft="25dp"
            android:layout_marginTop="450dp"
            android:background="@drawable/ic_build_black_24dp"
            android:shadowRadius="2"
            android:text="" />
    </LinearLayout>
    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom"
        android:layout_marginLeft="25dp"
        android:orientation="horizontal">
    </LinearLayout>
</LinearLayout>

0 个答案:

没有答案