0
スレッドで新しいサービスを開始するには スレッドは継続的に実行されていますが、run()のstartservice()メソッドは開始されません。 助けてください。次のようにスレッドのrun()で新しいサービスを開始するには?
コードがある.....
package com.example.demo;
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.widget.Toast;
public class Act extends Service {
/** Called when the activity is first created. */
@Override
public void onCreate() {
super.onCreate();
Toast.makeText(Act.this,"In On Create",Toast.LENGTH_SHORT).show();
Intent i=new Intent(getApplicationContext(),HelloService.class);
startService(i);
Toast.makeText(Act.this,"In End Create",Toast.LENGTH_SHORT).show();
updateTimeTask.start();
}
private Thread updateTimeTask = new Thread() {
public void run() {
Intent i=new Intent(getApplicationContext(),HelloService.class);
startService(i); //This Service not gets started
}
};
@Override
public IBinder onBind(Intent intent) {
// TODO Auto-generated method stub
return null;
}
}
を? – MrJre
サービスからログに記録されないLogステートメントがありますか?このサービスは実行されていないことをどのように知っていますか?あなたのマニフェストも投稿してください。あなたがそれを宣言していることを確認してください –
HelloService.javaファイルにトーストを追加しましたが、このトーストは表示されません...そしてスレッド外のサービスを呼び出すとそのトーストが表示されます.... – Trupti