我正在尝试启动和关闭服务。我的服务是日志。
package com.example.textsmslock;
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.util.Log;
public class Logs extends Service
{
@Override
public IBinder onBind(Intent arg0){
// TODO Auto-generated method stub
return null;
}
@Override
public void onStart(Intent intent, int startId) {
// TODO Auto-generated method stub
super.onStart(intent, startId);
System.out.println("LOGS STARTED");
Log.d("TAG", "FirstService started");
}
@Override
public void onDestroy() {
// TODO Auto-generated method stub
super.onDestroy();
}
}
调用它的活动是 ConfirmPin。正在函数中调用日志。
// imports...
// public class...
public void ConfirmingPin()
{
if(pinCorrect)
{
startService(new Intent("com.example.textsmslock.Logs"));
}
}
这是我的 AndridManifest
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.textsmslock"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="15" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".ConfirmPin"
android:label="@string/title_activity_confirm_pin" >
<intent-filter>
<action android:name="com.example.textsmslock.ConfirmPin" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<service android:name=".Logs"/>
</application>
日志猫说:
无法启动服务 Intent { act=com.example.textsmslock.Logs }:未找到
有谁知道为什么我无法启动服务意图?