2013-09-25 17 views
21

Ho riscontrato un problema con l'impostazione del metodo onStart nella mia app. Si ha sempre una barrato, dicendo: "Questo metodo è stata sconsigliata a livello di API 5. Ho bisogno onStart, non onStartCommand.In Android, come posso evitare che il metodo onStart venga deprecato?

Come posso risolvere questo?

MyNotificationService.java

import android.app.Service; 
import android.content.Intent; 
import android.os.IBinder; 
import android.widget.Toast; 

public class MyNotificationService extends Service { 

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

    @Override 
    public void onCreate() { 
     // TODO Auto-generated method stub 
     super.onCreate(); 
     Toast.makeText(this, "OnCreate()", Toast.LENGTH_SHORT).show(); 
    } 

    @Override 
    public void onDestroy() { 
     // TODO Auto-generated method stub 
     super.onDestroy(); 
     Toast.makeText(this, "OnDestroy()", Toast.LENGTH_SHORT).show(); 
    } 

    @Override 
    @Deprecated 
    public void onStart(Intent intent, int startId) { 
     // TODO Auto-generated method stub 
     super.onStart(intent, startId); 
    } 



} 

Reminder_2. java

import android.media.MediaPlayer; 
import android.os.Bundle; 
import android.app.Activity; 
import android.content.Intent; 
import android.view.Menu; 
import android.view.View; 
import android.view.Window; 
import android.widget.DatePicker; 
import android.widget.ImageButton; 

public class Reminder_2 extends Activity { 
String message; 
DatePicker datepicker; 
    @Override 
    protected void onCreate(Bundle savedInstanceState) { 
     requestWindowFeature(Window.FEATURE_NO_TITLE); 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.activity_reminder_2); 
     datepicker=(DatePicker)findViewById(R.id.datePicker1); 
     Home(); 
     Next(); 
     Save(); 
    } 
    private void Next() { 
     final MediaPlayer button_tone = MediaPlayer.create(this, R.raw.button_sound); 
     ImageButton Button = (ImageButton) findViewById(R.id.imageButton1); 
     View.OnClickListener myListener = new View.OnClickListener() { 
      @Override 
      public void onClick(View v) { 
        button_tone.start(); 
        finish(); 
      } 
     }; 
     Button.setOnClickListener(myListener); 
    } 
    private void Save() { 
     final MediaPlayer button_tone = MediaPlayer.create(this, R.raw.button_sound); 
     ImageButton Button = (ImageButton) findViewById(R.id.imageButton3); 
     View.OnClickListener myListener = new View.OnClickListener() { 
      @Override 
      public void onClick(View v) { 
        button_tone.start(); 
        Intent intent = new Intent(); 
        intent.setClass(getApplicationContext(), MyNotificationService.class); 
        startService(intent); 
      } 
     }; 
     Button.setOnClickListener(myListener); 
    } 
    private void Home() { 
     final MediaPlayer button_tone = MediaPlayer.create(this, R.raw.button_sound); 
     ImageButton Button = (ImageButton) findViewById(R.id.imageButton2); 
     View.OnClickListener myListener = new View.OnClickListener() { 
      @Override 
      public void onClick(View v) { 
       button_tone.start(); 
       Intent intent = new Intent(getApplicationContext(), MainActivity.class); 
       intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); 
       startActivity(intent); 
      } 
     }; 
     Button.setOnClickListener(myListener); 
    } 
    @Override 
    public boolean onCreateOptionsMenu(Menu menu) { 
     // Inflate the menu; this adds items to the action bar if it is present. 
     getMenuInflater().inflate(R.menu.reminder, menu); 
     return true; 
    } 

} 
+1

Utilizzare 'onStartCommand()', farà lo stesso qualunque cosa 'onStart()' può –

+0

Ha funzionato! Grazie mille! Ho aggiunto un messaggio di benvenuto dopo il ritorno a super.onStartCommand (intent, flags, startId); quindi all'inizio pensavo che StartStommCommand fosse diverso. L'ho aggiunto prima, e ha funzionato bene. –

risposta

54

Usa onStartCommand().

Si desidera sapere di più su come lo cambiano, fare riferimento alla documentazione di google come di seguito.

// This is the old onStart method that will be called on the pre-2.0 
// platform. On 2.0 or later we override onStartCommand() so this 
// method will not be called. 
@Override 
public void onStart(Intent intent, int startId) { 
    handleStart(intent, startId); 
} 

@Override 
public int onStartCommand(Intent intent, int flags, int startId) { 
    handleStart(intent, startId); 
    return START_NOT_STICKY; 
} 
+0

Grazie! onStartCommand funziona bene ora. –

+2

cos'è handleStart? ho OnStart (intento, startId); all'interno di onStartCommand ... come modificarlo? – Elizabeth

+2

È un segnaposto per tutto ciò che si desidera fare quando viene chiamato onStart o onStartCommand. – Shriken