我附上了AndroidManifest.xml的代码。我无法弄清楚出了什么问题。当我评论该行时,一切正常,(没有服务)但是当读取行时,我收到我在标题中描述的错误。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.grkoan.androidbasicsdemo" >
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".SecondActivity"
android:label="@string/title_activity_second" >
</activity>
<service android:name="Services.MyServices" />
</application>
答案 0 :(得分:1)
而不是
<service android:name="Services.MyServices" />
应该是
<service android:name=".MyServices" />