2010-08-30 42 views
0

HI, 我写一个简单的服务应用,下面是活动和服务的代码..,当我调用startService(),和stopService()其工作正常进行的一次,在我它必须给予通知..从下一次起如果再次调用startService()和stopService()它没有给出想要的结果...问题服务

如果我缺少一些东西,请帮助我.... ThanQ 。

----------这就是我的活动类------------- 包com.mypack.serviceex;

进口android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.util.Log; import android.view.View; import android.widget.Button;

公共类serviceex延伸活动实现Button.OnClickListener { /**当首先创建活动调用。 */ Button bt1,bt2; public void onCreate(Bundle savedInstanceState){ super.onCreate(savedInstanceState); setContentView(R.layout.main);

bt1 = (Button) findViewById(R.id.Button01); 
    bt2 = (Button) findViewById(R.id.Button02); 

    bt1.setOnClickListener(this); 
    bt2.setOnClickListener(this); 


} 
@Override 
public void onClick(View v) { 
    if(v == bt1) 
    { 
     Intent i = new Intent(serviceex.this,myservice.class); 
     Log.i("err","onClick(View v...."); 
     startService(i); 
    } 
    else if(v == bt2) 
    { 
     Intent i = new Intent(serviceex.this,myservice.class); 
     Log.i("err","else if(v == bt2)........"); 
     stopService(i); 
    } 

} 

}

 --------- this is my service ------------- 

包com.mypack.serviceex;

进口android.app.Notification; import android.app.NotificationManager; import android.app.PendingIntent; import android.app.Service; import android.content.Intent; import android.os.IBinder; import android.util.Log;

公共类的MyService扩展服务 {

private NotificationManager nmgr; 
public void onCreate() 
{ 
    super.onCreate(); 
    nmgr = (NotificationManager) getSystemService(NOTIFICATION_SERVICE); 
    Log.i("err","onCreate.........."); 
    Thread th = new Thread(null,new incls(),"service..."); 

} 
public void onStart(Intent intent,int sid) 
{ 
    super.onStart(intent, sid); 
    Log.i("err","onStart........"); 
} 
public void onDestroy() 
{ 
    super.onDestroy(); 
    Log.i("err","onDestroy.........."); 
    displayMessage("Stopping Service"); 

} 
public void displayMessage(String str) 
{ 
    Log.i("err.","displayMessage....."); 
    Notification nf = new Notification(R.drawable.icon,str,System.currentTimeMillis()); 
    PendingIntent pi = PendingIntent.getActivity(this, 0, new Intent(this,myservice.class), 0); 
    nf.setLatestEventInfo(this, "Service...", str, pi); 
    nmgr.notify(R.string.uid, nf); 


} 

private class incls implements Runnable 
{ 
    public void run() 
    { 
     Log.i("err","public void run().........."); 
     System.out.println("In Runnn"); 


    } 



} 
@Override 
public IBinder onBind(Intent arg0) { 
    // TODO Auto-generated method stub 
    return null; 
} 

}

+0

什么API级别,你定位? – codinguser 2010-08-30 11:52:29

+0

我有趣的水平2.1 – Brigadier 2010-08-30 12:16:46

回答

0

你的方法都不是@Override荷兰国际集团类的方法。你必须用@Override来表示它们。此外,在2.1上,您应该使用onStartCommand()而不是onStart()。另外请注意,拨打startService()多次只会拨打onCreate()一次

0

@Override是否绝对必要? Java规范没有说你仍然可以重写一个没有@Override的方法,但是如果方法实际上并没有重写,那么注释会导致编译错误?