私はこの質問が何度も聞かれたことを知っていますが、他のすべてのスレッドは私の問題をまったく解決しませんでした、私は私のコードに何も悪いことを見ることができません。たぶん私はここで何かを逃しました、誰かが私を助けることができますか?
インテントサービスのコード:
package Services;
import Android.app.IntentService;
import Android.content.Intent;
import Android.widget.Toast;
public class WifiSearchService extends IntentService {
/**
* A constructor is required, and must call the super IntentService(String)
* constructor with a name for the worker thread.
*/
public WifiSearchService() {
super("WifiSearchService");
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
Toast.makeText(this, "service starting", Toast.LENGTH_SHORT).show();
return super.onStartCommand(intent,flags,startId);
}
/**
* The IntentService calls this method from the default worker thread with
* the intent that started the service. When this method returns, IntentService
* stops the service, as appropriate.
*/
@Override
protected void onHandleIntent(Intent intent) {
// Normally we would do some work here, like download a file.
// For our sample, we just sleep for 5 seconds.
long endTime = System.currentTimeMillis() + 5*1000;
while (System.currentTimeMillis() < endTime) {
synchronized (this) {
try {
wait(endTime - System.currentTimeMillis());
} catch (Exception e) {
}
}
}
}
}
スイッチをフリックしてサービスを開始します。
package com.cdobiz.wifimapper;
import Services.WifiSearchService;
import Android.os.Bundle;
import Android.app.Activity;
import Android.app.ActivityManager;
import Android.app.ActivityManager.RunningServiceInfo;
import Android.content.Context;
import Android.content.Intent;
import Android.util.Log;
import Android.view.Menu;
import Android.widget.CompoundButton;
import Android.widget.CompoundButton.OnCheckedChangeListener;
import Android.widget.Switch;
public class MainActivity extends Activity {
private Context context;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
context = this;
setContentView(R.layout.activity_main);
Switch serviceSwitch = (Switch) this.findViewById(R.id.switchService);
serviceSwitch.setChecked(isMyServiceRunning());
serviceSwitch.setOnCheckedChangeListener(new OnCheckedChangeListener(){
@Override
public void onCheckedChanged(CompoundButton view, boolean state) {
if(state){
startService(new Intent(context, WifiSearchService.class));
}else{
stopService(new Intent(context, WifiSearchService.class));
}
}
});
}
private boolean isMyServiceRunning() {
ActivityManager manager = (ActivityManager) getSystemService(ACTIVITY_SERVICE);
for (RunningServiceInfo service : manager.getRunningServices(Integer.MAX_VALUE)) {
Log.v("debug", service.service.getClassName());
if ("com.cdobiz.wifimapper.services.WifiSearchService".equals(service.service.getClassName())) {
return true;
}
}
return false;
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.activity_main, menu);
return true;
}
}
マニフェスト:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:Android="http://schemas.Android.com/apk/res/Android"
package="com.cdobiz.wifimapper"
Android:versionCode="1"
Android:versionName="1.0" >
<uses-sdk
Android:minSdkVersion="14"
Android:targetSdkVersion="17" />
<uses-permission Android:name="Android.permission.ACCESS_WIFI_STATE"/>
<application
Android:allowBackup="true"
Android:icon="@drawable/ic_launcher"
Android:label="@string/app_name"
Android:theme="@style/AppTheme" >
<activity
Android:name="com.cdobiz.wifimapper.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>
<service Android:enabled="true" Android:name=".services.WifiSearchService"></service>
</application>
</manifest>
パッケージ名をcom.cdobiz.wifimapper.servicesに変更し、マニフェストでサービスのパッケージ名を変更することで、サービスを実行できました。
service がApp-Manifestに登録されていることを確認することで問題を解決しました。
私も同じ問題を抱えていました。クラスのコンテンツコードテキストをコピーして解決しました。次に、クラスを削除し、パッケージを右クリックして同じクラスを再度作成しました->新規->サービス->サービス(インテント)次に、同じコードをクラスに貼り付けて、機能します。
これが誰かに役立つことを願っています
インテントサービスを使用して開始しない問題を解決しました
Intent intent = new Intent(this,UploadService.class);
this.startService(intent);
私のサービスを開始するには
serのマニフェストでAndroid:enabled="true"
を試してください
私も同じ問題を抱えていました。これを解決するために、Intenserviceクラスを削除しました。右クリック>新規>サービス>サービス(IntentService)を使用して新しいクラスを作成しました。