安卓:无法启动服务意图:未找到?
2022-09-03 05:24:24
我知道,我不是第一个遇到这个问题的人,但我尝试了很多解决方案,我发现了,没有人工作......也许你可以找到错误
错误(也是在没有.class和/的情况下出现的。客户端取决于其他设置)
12-02 16:40:15.359: W/ActivityManager(74): 无法启动服务意图 { act=com.android.fh.EnOceanApp.Client.class }: 未找到
在清单中,这包含在应用程序中,在活动中(也在活动和“中尝试过)。客户”
onCreate() 中的代码
startService(new Intent(this, Client.class));
或
startService(new Intent(this.getApplicationContext(), Client.class));
或
Intent intent=new Intent("com.android.fh.EnOceanApp.Client.class");
this.startService(intent);
或
Intent intent=new Intent("com.android.fh.EnOceanApp.Client");
this.startService(intent);
而现在,我不再有一个想法了。com.android.fh.EnOceanApp 是这个包,Client.java这个包中的服务类。
和我忘记的清单:
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:label="@string/app_name"
android:name=".EnOceanAppActivity" >
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".ListView"
android:label="List View">
</activity>
<activity android:name=".GraphView"
android:label="Graph View">
</activity>
<service
android:name=".Client"></service> //with and without ., of course without this comment
</application>